yiguolei commented on code in PR #31690: URL: https://github.com/apache/doris/pull/31690#discussion_r1510010344
########## fe/fe-core/src/main/java/org/apache/doris/planner/HashJoinNode.java: ########## @@ -784,10 +784,8 @@ protected void toThrift(TPlanNode msg) { if (eqJoinConjuncts.isEmpty()) { Preconditions.checkState(joinOp == JoinOperator.LEFT_SEMI_JOIN || joinOp == JoinOperator.LEFT_ANTI_JOIN); - if (joinOp == JoinOperator.LEFT_SEMI_JOIN) { - msg.hash_join_node.join_op = JoinOperator.NULL_AWARE_LEFT_SEMI_JOIN.toThrift(); - } else if (joinOp == JoinOperator.LEFT_ANTI_JOIN) { - msg.hash_join_node.join_op = JoinOperator.NULL_AWARE_LEFT_ANTI_JOIN.toThrift(); + if (joinOp == JoinOperator.LEFT_SEMI_JOIN || joinOp == JoinOperator.LEFT_ANTI_JOIN) { + msg.hash_join_node.join_op = transformJoinOperator().toThrift(); Review Comment: 我们为啥要在toThrift 这里来transform呢,这样我们explain看到的和我们发送给be的不一样啊 -- 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