-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not support lateral joins #122
Comments
airhorns
added a commit
to airhorns/pgsql-ast-parser
that referenced
this issue
Dec 15, 2023
Postgres has a LATERAL keyword that modifies one of the `from_item`s in a selection. It doesn't have to be an explicit join statement but is most often used as such. This adds support for parsing the LATERAL keyword in front of each from_item type that supports it. See https://www.postgresql.org/docs/current/sql-select.html Fixes oguimbal#122
oguimbal
pushed a commit
that referenced
this issue
Jan 8, 2024
Postgres has a LATERAL keyword that modifies one of the `from_item`s in a selection. It doesn't have to be an explicit join statement but is most often used as such. This adds support for parsing the LATERAL keyword in front of each from_item type that supports it. See https://www.postgresql.org/docs/current/sql-select.html Fixes #122
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any query using lateral joins, eg:
Doesn't work.
The text was updated successfully, but these errors were encountered: