This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 67b539ca25e branch-3.0: [fix](pipelineX) fix DCHECK error when reuse _join_block in nested loop join #46493 (#51128) 67b539ca25e is described below commit 67b539ca25e5327961ff04e29f9120dc30e1edde Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Wed Jun 11 10:49:03 2025 +0800 branch-3.0: [fix](pipelineX) fix DCHECK error when reuse _join_block in nested loop join #46493 (#51128) Cherry-picked from #46493 Co-authored-by: Lijia Liu <liutang...@yeah.net> 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 4951ba66616..58256bcdaac 100644 --- a/be/src/pipeline/exec/nested_loop_join_probe_operator.cpp +++ b/be/src/pipeline/exec/nested_loop_join_probe_operator.cpp @@ -522,8 +522,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