simple-sql-parser icon indicating copy to clipboard operation
simple-sql-parser copied to clipboard

SQLite: Fix handling of keywords as identifiers

Open ad-si opened this issue 1 year ago • 1 comments

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"

ad-si avatar Jun 17 '23 17:06 ad-si

Probably the same problem:

CREATE TABLE "edit" (name TEXT)

currently fails with:

edit() is not supported.

ad-si avatar Aug 20 '23 15:08 ad-si