Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukang-Lian committed Oct 24, 2023
1 parent 48c962e commit c5e5b92
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions be/test/olap/compaction_delete_bitmap_calculator_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ TEST_F(CompactionDeleteBitmapCalculatorTest, test) {
RowsetIdUnorderedSet set;
set.insert(_tablet_meta->all_rs_metas()[0]->rowset_id());
_txn_mgr->set_txn_related_delete_bitmap(partition_id, 1, _tablet->tablet_id(), schema_hash,
_tablet->tablet_uid(), true, delete_bitmap, set);
_tablet->tablet_uid(), true, delete_bitmap, set,
nullptr);

// commit rowset 2
load_id.set_hi(2);
Expand All @@ -258,7 +259,7 @@ TEST_F(CompactionDeleteBitmapCalculatorTest, test) {
EXPECT_TRUE(status == Status::OK());
set.insert(_tablet_meta->all_rs_metas()[1]->rowset_id());
_txn_mgr->set_txn_related_delete_bitmap(partition_id, 2, tablet_id, schema_hash, _tablet_uid,
true, delete_bitmap, set);
true, delete_bitmap, set, nullptr);

// prepare rowset 3
load_id.set_hi(3);
Expand Down

0 comments on commit c5e5b92

Please sign in to comment.