morningman opened a new issue #3480: URL: https://github.com/apache/incubator-doris/issues/3480
**Describe the bug** Push down predicate logic return wrong plan for semi join **To Reproduce** ``` select * from join1 left semi join join2 on join1.id = join2.id and join2.id > 1; ``` the `join2.id > 1` should not be pushed down to table `join1`. **Expected behavior** `join2.id` should only push down to table `join2`. ---------------------------------------------------------------- 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. 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