[fix](unique-key-merge-on-write) Fix missing delete bitmap introduced by DSIP-018 (#10548) (#10863)

Missing delete bitmap for copy constructor of `TabletMeta(TabletMeta&)`.
This commit is contained in:
Compilation Success
2022-07-15 11:58:49 +08:00
committed by GitHub
parent 33e9d5b2da
commit dafd41824b

View File

@ -209,7 +209,8 @@ TabletMeta::TabletMeta(const TabletMeta& b)
_preferred_rowset_type(b._preferred_rowset_type),
_remote_storage_name(b._remote_storage_name),
_storage_medium(b._storage_medium),
_cooldown_resource(b._cooldown_resource) {};
_cooldown_resource(b._cooldown_resource),
_delete_bitmap(new DeleteBitmap(*b._delete_bitmap)) {};
void TabletMeta::init_column_from_tcolumn(uint32_t unique_id, const TColumn& tcolumn,
ColumnPB* column) {