924060929 opened a new pull request, #42380: URL: https://github.com/apache/doris/pull/42380
## Proposed changes bind using join for compatible with MySQL behavior for example ```sql select * from t1 left join t2 using(id) left join t3 using(id) ``` we should generate the join condition: 1. `t1.id = t2.id` 2. `t1.id = t3.id`, previously, it was `t2.id = t3.id` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org