Skip to content

Commit

Permalink
[fix](pipelineX) fix DCHECK error when reuse _join_block in nested lo…
Browse files Browse the repository at this point in the history
…op join
  • Loading branch information
liutang123 committed Jan 7, 2025
1 parent aba84f9 commit f18a257
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions be/src/pipeline/exec/nested_loop_join_probe_operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f18a257

Please sign in to comment.