liaoxin01 commented on code in PR #22282:
URL: https://github.com/apache/doris/pull/22282#discussion_r1289427996
##########
be/src/olap/tablet.cpp:
##########
@@ -2977,6 +2977,17 @@ Status
Tablet::calc_segment_delete_bitmap(RowsetSharedPtr rowset,
}
DCHECK_EQ(total, row_id) << "segment total rows: " << total << " row_id:"
<< row_id;
+ RowsetIdUnorderedSet rowsetids;
+ for (const auto& rowset : specified_rowsets) {
+ rowsetids.emplace(rowset->rowset_id());
+ LOG(INFO) << "[tabletID:" << tablet_id() << "]"
+ << "[_add_sentinel_mark_to_delete_bitmap][end_version:" <<
end_version << "]"
+ << "add:" << rowset->rowset_id();
+ }
+ if (config::enable_merge_on_write_correctness_check) {
Review Comment:
Place the code from line 2980 to line 2986 within if condition.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]