This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new dafd41824b [fix](unique-key-merge-on-write) Fix missing delete bitmap introduced by DSIP-018 (#10548) (#10863) dafd41824b is described below commit dafd41824b254e007ee7ac2e0200650113fb5cc0 Author: Compilation Success <106100979+compilethewo...@users.noreply.github.com> AuthorDate: Fri Jul 15 11:58:49 2022 +0800 [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&)`. --- be/src/olap/tablet_meta.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/be/src/olap/tablet_meta.cpp b/be/src/olap/tablet_meta.cpp index 30b0ffd319..ca3966264b 100644 --- a/be/src/olap/tablet_meta.cpp +++ b/be/src/olap/tablet_meta.cpp @@ -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) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org