Closed julescmay closed 2 months ago
Initially I tried adding single-quoted words to SQLiteDialect, but I abandoned that. I don't think it's reasonable to allow single-quoted Word
s (like double-quoted Word
s) because we still need single-quotes for strings. So, although this fix feels like a kink, it seems the right solution.
In SQLite (and others that permit single-quoted identifiers):
failed at
'id'
. Although single-quoted tokens are treated tolerantly inParseIdentifierWithClause()
, only properly-formedWord
s were recognised inParseColumns()
. (As far as I can tell, all other uses parse correctly.)