pgsql-ast-parser
pgsql-ast-parser copied to clipboard
Yet another simple Postgres SQL parser
Results
62
pgsql-ast-parser issues
Sort by
recently updated
recently updated
newest added
The following SQL cannot be parsed even though it is perfectly valid (at least in PG 17) ```sql select "a column with *" from table ``` fails with: ``` invalid...
Historically, when selecting from a sub-select eg `select * from (select id from test) t1` Postgres required that the subquery `(select id from test)` be aliased, in this case as...