mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-27 21:49:42 +00:00
Fix identifier starts with $ should be regarded as a placeholder in SQLite (#1402)
This commit is contained in:
parent
7b4ac7ca9f
commit
df86f259ce
2 changed files with 17 additions and 1 deletions
|
|
@ -41,7 +41,6 @@ impl Dialect for SQLiteDialect {
|
|||
ch.is_ascii_lowercase()
|
||||
|| ch.is_ascii_uppercase()
|
||||
|| ch == '_'
|
||||
|| ch == '$'
|
||||
|| ('\u{007f}'..='\u{ffff}').contains(&ch)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue