This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 986392d968f [branch-2.0](fix)Fix 2.0 ut compilation (#25808) 986392d968f is described below commit 986392d968feb8b570de69564c183bd30395ae09 Author: abmdocrt <yukang.lian2...@gmail.com> AuthorDate: Tue Oct 24 11:45:22 2023 +0800 [branch-2.0](fix)Fix 2.0 ut compilation (#25808) --- be/test/olap/compaction_delete_bitmap_calculator_test.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/be/test/olap/compaction_delete_bitmap_calculator_test.cpp b/be/test/olap/compaction_delete_bitmap_calculator_test.cpp index 0f95bb202c7..eb869c377a9 100644 --- a/be/test/olap/compaction_delete_bitmap_calculator_test.cpp +++ b/be/test/olap/compaction_delete_bitmap_calculator_test.cpp @@ -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); @@ -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); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org