You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
As a user of the DataFusion library for SQL parsing and logical query planning, I would like to be able to produce a valid logical plan from a SQL query containing an EXISTS subquery instead of failing with Unsupported ast node Exists.
Example query: SELECT * FROM a WHERE EXISTS (SELECT * FROM b WHERE a.id = b.id)
Describe the solution you'd like
The SQL should parse without error and produce a valid logical plan.
For reference, here is an example query and logical plan from Apache Spark:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
As a user of the DataFusion library for SQL parsing and logical query planning, I would like to be able to produce a valid logical plan from a SQL query containing an
EXISTS
subquery instead of failing withUnsupported ast node Exists
.Example query:
SELECT * FROM a WHERE EXISTS (SELECT * FROM b WHERE a.id = b.id)
Describe the solution you'd like
The SQL should parse without error and produce a valid logical plan.
For reference, here is an example query and logical plan from Apache Spark:
Describe alternatives you've considered
None
Additional context
This is a subset of issue #123 which aims to add full support for
EXISTS
, including a physical plan.The text was updated successfully, but these errors were encountered: