simple-sql-parser
simple-sql-parser copied to clipboard
SQLite: Fix handling of keywords as identifiers
This should work:
SELECT 1 AS open
but currently yields following error:
:1:13:
SELECT 1 AS open
^
(line 1, column 13):
unexpected Identifier Nothing "open"
Probably the same problem:
CREATE TABLE "edit" (name TEXT)
currently fails with:
edit() is not supported.