This is an automated email from the ASF dual-hosted git repository. lihaopeng pushed a commit to branch repair_outer_join_0714 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/repair_outer_join_0714 by this push: new dbe1ebd496 [Bug] fix do not open with voutput_expr_context (#10919) dbe1ebd496 is described below commit dbe1ebd4963bcf6aa37f6b8547fff4b788a1bd8f Author: HappenLee <happen...@hotmail.com> AuthorDate: Sat Jul 16 20:16:46 2022 +0800 [Bug] fix do not open with voutput_expr_context (#10919) Co-authored-by: lihaopeng <lihaop...@baidu.com> --- be/src/vec/exec/join/vhash_join_node.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/be/src/vec/exec/join/vhash_join_node.cpp b/be/src/vec/exec/join/vhash_join_node.cpp index 774aa1651e..72f9ff21a5 100644 --- a/be/src/vec/exec/join/vhash_join_node.cpp +++ b/be/src/vec/exec/join/vhash_join_node.cpp @@ -1045,6 +1045,7 @@ Status HashJoinNode::open(RuntimeState* state) { if (_vother_join_conjunct_ptr) { RETURN_IF_ERROR((*_vother_join_conjunct_ptr)->open(state)); } + RETURN_IF_ERROR(VExpr::open(_output_expr_ctxs, state)); std::promise<Status> thread_status; std::thread(bind(&HashJoinNode::_hash_table_build_thread, this, state, &thread_status)) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org