Skip to content

Commit

Permalink
[fix](hash join) fix column ref DCHECK failure of hash join node bloc…
Browse files Browse the repository at this point in the history
…k mem reuse (#28991)
  • Loading branch information
jacktengg committed Dec 25, 2023
1 parent b12e3ce commit dfb4a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/exec/join/vhash_join_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ Status HashJoinNode::_materialize_build_side(RuntimeState* state) {
// If eos or have already met a null value using short-circuit strategy, we do not need to pull
// data from data.
while (!eos && (!_short_circuit_for_null_in_build_side || !_has_null_in_build_side)) {
block.clear_column_data();
release_block_memory(block, 1);
RETURN_IF_CANCELLED(state);
{
SCOPED_TIMER(_build_get_next_timer);
Expand Down

0 comments on commit dfb4a0a

Please sign in to comment.