Skip to content

Commit

Permalink
6
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukang-Lian committed Oct 19, 2023
1 parent 26430c4 commit 04103ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/test/olap/compaction_delete_bitmap_calculator_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ 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(),
_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 @@ -256,7 +256,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, _tablet_uid, true,
delete_bitmap, set);
delete_bitmap, set, nullptr);

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

0 comments on commit 04103ff

Please sign in to comment.