This is an automated email from the ASF dual-hosted git repository. liulijia pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new b26aabee261 [fix](pipelineX) fix DCHECK error when reuse _join_block in nested loop join (#46493) b26aabee261 is described below commit b26aabee2615f4db0b2571204ea0aa822f3a3d39 Author: Lijia Liu <liutang...@yeah.net> AuthorDate: Wed Jan 8 10:26:33 2025 +0800 [fix](pipelineX) fix DCHECK error when reuse _join_block in nested loop join (#46493) Related Issue: #46498 Co-authored-by: liutang123 <liuli...@gmail.com> --- be/src/pipeline/exec/nested_loop_join_probe_operator.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/be/src/pipeline/exec/nested_loop_join_probe_operator.cpp b/be/src/pipeline/exec/nested_loop_join_probe_operator.cpp index c9642bb9b3b..e2c6b7d84f0 100644 --- a/be/src/pipeline/exec/nested_loop_join_probe_operator.cpp +++ b/be/src/pipeline/exec/nested_loop_join_probe_operator.cpp @@ -526,8 +526,7 @@ Status NestedLoopJoinProbeOperatorX::pull(RuntimeState* state, vectorized::Block local_state._conjuncts, &local_state._join_block, local_state._join_block.columns())); } - RETURN_IF_ERROR( - local_state._build_output_block(&local_state._join_block, block, false)); + RETURN_IF_ERROR(local_state._build_output_block(&local_state._join_block, block)); local_state._reset_tuple_is_null_column(); } local_state._join_block.clear_column_data(join_block_column_size); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org