sql-parser-cst
sql-parser-cst copied to clipboard
Reserved keywords can't be used as aliases in PostgreSQL
For example the following is valid in PostgreSQL, but currently causes a crash:
SELECT set.foo FROM settings AS set
Syntax Error: Unexpected "set"
--> undefined:1:8
|
1 | SELECT set.foo FROM settings AS set;
| ^