LiBinfeng-01 commented on code in PR #27378: URL: https://github.com/apache/doris/pull/27378#discussion_r1408835653
########## fe/fe-core/src/main/java/org/apache/doris/nereids/jobs/executor/Analyzer.java: ########## @@ -121,6 +124,12 @@ private static List<RewriteJob> buildAnalyzeJobs(Optional<CustomTableResolver> c bottomUp(new CheckAnalysis()), topDown(new EliminateGroupByConstant()), topDown(new NormalizeAggregate()), + bottomUp(new SemiJoinCommute()), + bottomUp( + new CollectSubQueryAlias(), + new CollectJoinConstraint() + ), + topDown(new LeadingJoin()), Review Comment: done ########## fe/fe-core/src/main/java/org/apache/doris/nereids/jobs/executor/Analyzer.java: ########## @@ -121,6 +124,12 @@ private static List<RewriteJob> buildAnalyzeJobs(Optional<CustomTableResolver> c bottomUp(new CheckAnalysis()), topDown(new EliminateGroupByConstant()), topDown(new NormalizeAggregate()), + bottomUp(new SemiJoinCommute()), Review Comment: done -- 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