Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Nov 28, 2024
1 parent 72625c2 commit 8aa587d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/pipeline/exec/nested_loop_join_build_operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@ Status NestedLoopJoinBuildSinkOperatorX::sink(doris::RuntimeState* state, vector

auto rows = block->rows();
if (rows != 0) {
COUNTER_UPDATE(local_state.rows_input_counter(), (int64_t)rows);
if (_match_all_build || _is_right_semi_anti) {
local_state._shared_state->build_side_visited_flags.emplace_back(
vectorized::ColumnUInt8::create(rows, 0));
}
if (local_state._should_collected_blocks) {
COUNTER_UPDATE(local_state.rows_input_counter(), (int64_t)rows);
auto mem_usage = block->allocated_bytes();
local_state._build_rows += rows;
local_state._total_mem_usage += mem_usage;
Expand Down

0 comments on commit 8aa587d

Please sign in to comment.