Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
BiteTheDDDDt committed Jan 6, 2025
1 parent 2a79254 commit 62cf7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/pipeline/exec/join/process_hash_table_probe_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@ void ProcessHashTableProbe<JoinOpType>::build_side_output_column(
assert_cast<vectorized::ColumnNullable&>(*mcol[i + _right_col_idx]);
mark_column.resize(size);
auto* null_map = mark_column.get_null_map_column().get_data().data();
memset(null_map, 0, size);
auto* data = assert_cast<vectorized::ColumnUInt8&>(mark_column.get_nested_column())
.get_data()
.data();
std::fill(null_map, null_map + size, 0);
std::fill(data, data + size, 1);
} else {
mcol[i + _right_col_idx]->insert_default();
Expand Down

0 comments on commit 62cf7d3

Please sign in to comment.