-
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
Add right anti join support and support it in HashBuildProbeOrder #4011
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about we add Integration test about Join?
I find there is just inner join in it.
@@ -789,7 +789,6 @@ fn build_join_indexes( | |||
&keys_values, | |||
*null_equals_null, | |||
)? { | |||
left_indices.append(i); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
You mean with SQL tests, or something else? Semi and anti joins don't have specific syntax currently, but are used for correlated subqueries, The right semi and right Anti are not used that often as they depend on statistics to be available. In Ballista I recently added support for a simple version of adaptive query execution. Now joins are reordered based on statistics that are collected when each stage has finished. |
Benchmark runs are scheduled for baseline = 6651070 and contender = d6f0b12. d6f0b12 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…ache#4011) * Add right anti join support * Fix
…ache#4011) * Add right anti join support * Fix
Which issue does this PR close?
Closes #3946
Rationale for this change
Possible performance / memory usage improvements when optimization kicks in.
What changes are included in this PR?
Are there any user-facing changes?