EmmyMiao87 commented on a change in pull request #8618: URL: https://github.com/apache/incubator-doris/pull/8618#discussion_r833887256
########## File path: be/src/vec/exec/join/vhash_join_node.cpp ########## @@ -625,14 +639,20 @@ HashJoinNode::HashJoinNode(ObjectPool* pool, const TPlanNode& tnode, const Descr _build_unique(_join_op == TJoinOp::LEFT_ANTI_JOIN || _join_op == TJoinOp::LEFT_SEMI_JOIN), _is_right_semi_anti(_join_op == TJoinOp::RIGHT_ANTI_JOIN || _join_op == TJoinOp::RIGHT_SEMI_JOIN), - _is_outer_join(_match_all_build || _match_all_probe) { + _is_outer_join(_match_all_build || _match_all_probe), + _output_slot_ids(tnode.hash_join_node.output_slot_ids){ _runtime_filter_descs = tnode.runtime_filters; init_join_op(); // avoid vector expand change block address. // one block can store 4g data, _build_blocks can store 128*4g data. // if probe data bigger than 512g, runtime filter maybe will core dump when insert data. _build_blocks.reserve(128); + + // output slot + if (tnode.hash_join_node.__isset.output_slot_ids) { Review comment: I forget to remove it ~ -- 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