morrySnow commented on code in PR #12391: URL: https://github.com/apache/doris/pull/12391#discussion_r963892873
########## fe/fe-core/src/main/java/org/apache/doris/nereids/glue/translator/PhysicalPlanTranslator.java: ########## @@ -378,8 +379,16 @@ public PlanFragment visitPhysicalHashJoin(PhysicalHashJoin<Plan, Plan> hashJoin, .map(e -> ExpressionTranslator.translate(e, context)) .collect(Collectors.toList()); + List<Expr> otherJoinConjuncts = hashJoin.getOtherJoinCondition() + .map(ExpressionUtils::extractConjunction) + .orElseGet(Lists::newArrayList) + .stream() + .filter(e -> !(e.equals(BooleanLiteral.TRUE))) Review Comment: @jackwener say all what i want say -- 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