-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
feature: support t left join (with nested_join) on from clause #1560
Comments
debug: In function
Then get error condtion |
Simplify sqls:
After debugging, I get: |
Root Cause: In 5.7, process t1 first, then t2, t3.code fragment in
variables We get keys in In 8.0, the code are changes when adapted from 5.7, code fragment:
variables How to fix?change
to
The process order now is the same with 5.7. |
…stoneatom#1560 [summary] 1. fix assert failed in optimizer() funtion. 2. reorder code in AddJoins() to support left join with nested_joins.
…stoneatom#1560 [summary] 1. fix assert failed in optimizer() funtion. 2. reorder code in AddJoins() to support left join with nested_joins.
…#1560 [summary] 1. fix assert failed in optimizer() funtion. 2. reorder code in AddJoins() to support left join with nested_joins.
Is your feature request related to a problem? Please describe.
Before backport code on #1434, we should support left join on from clause:
For statement next is ok:
Describe the solution you'd like
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: