Fix identifier starts with $ should be regarded as a placeholder in SQLite (#1402)

This commit is contained in:
hulk 2024-09-01 19:21:59 +08:00 committed by GitHub
parent 7b4ac7ca9f
commit df86f259ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 17 additions and 1 deletions

View file

@ -41,7 +41,6 @@ impl Dialect for SQLiteDialect {
ch.is_ascii_lowercase()
|| ch.is_ascii_uppercase()
|| ch == '_'
|| ch == '$'
|| ('\u{007f}'..='\u{ffff}').contains(&ch)
}