jackwener commented on code in PR #12767: URL: https://github.com/apache/doris/pull/12767#discussion_r974986642
########## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/RuleSet.java: ########## @@ -56,13 +56,13 @@ */ public class RuleSet { public static final List<Rule> EXPLORATION_RULES = planRuleFactories() - .add(JoinCommute.LEFT_DEEP) + .add(JoinCommute.ZIG_ZAG) .add(InnerJoinLAsscom.INSTANCE) .add(InnerJoinLAsscomProject.INSTANCE) .add(OuterJoinLAsscom.INSTANCE) .add(OuterJoinLAsscomProject.INSTANCE) - .add(SemiJoinLogicalJoinTranspose.LEFT_DEEP) - .add(SemiJoinLogicalJoinTransposeProject.LEFT_DEEP) + .add(SemiJoinLogicalJoinTranspose.ALL) + .add(SemiJoinLogicalJoinTransposeProject.ALL) Review Comment: use leftDeep -- 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