oguimbal / pgsql-ast-parser

Yet another simple Postgres SQL parser
304 stars 43 forks source link

Add support for parenthized subselects #146

Open airhorns opened 11 months ago

airhorns commented 11 months ago

The real postgres parser supports parentheses around a full select expression, or the select expression in a subselect. This adds support to the parser for these parentheses. They don't change the output AST, but they didn't parse before.

oguimbal commented 11 months ago

failling test :(