Skip to content

Commit

Permalink
11
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukang-Lian committed Aug 16, 2023
1 parent 1ac21c8 commit 1183a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/rowset/segment_v2/segment_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ Status SegmentWriter::append_block_with_partial_content(const vectorized::Block*
delete_sign_column != nullptr) {
auto& delete_sign_col =
reinterpret_cast<const vectorized::ColumnInt8&>(*(delete_sign_column->column));
if (delete_sign_col.size() == row_pos + num_rows) {
if (delete_sign_col.size() >= row_pos + num_rows) {
delete_sign_column_data = delete_sign_col.get_data().data();
}
}
Expand Down

0 comments on commit 1183a58

Please sign in to comment.