-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Optimize coalesce of join keys #23603
Labels
Comments
This already works for INNER JOINs -
For outer joins, we would need to set the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have seen queries like:
Here for both inner ad left joins we can simplify it to
l.id
since it's a join key. Similarly for the converse for right join. We should apply this rule before join reorderingThe text was updated successfully, but these errors were encountered: