-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
support more subqueries #1209
Labels
enhancement
New feature or request
Comments
@houqp Please assign it to me, thanks! |
Does that require to patch sqlparser or it's only on the engine side ? |
@Igosuki As far as know, sqlparser has supported subqueries that I listed, so it's only on the engine side. |
Closed
Hi @xudong963, could you add #1835 to your list? |
After #1649 is finished, the |
This was referenced Apr 8, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
support more subqueries and pass the TPCH associated with the subquery: https://github.com/apache/arrow-datafusion/issues?q=is%3Aopen+is%3Aissue+milestone%3ATPC-H
Describe the solution you'd like
WHERE EXISTS (SELECT ...)
SELECT (subquery) AS x
orWHERE (subquery) = x
[ NOT ] IN (SELECT ...)
Implement physical plan for IN Subquery #1835<expr> <op> ANY/SOME (<query>)
<expr> <op> ALL (<query>)
Describe alternatives you've considered
Correlated subqueries will be implemented by nested loop initially. After the realization of basic functions, we can do some optimization, such as decorrelation and so on.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: