This is an automated email from the ASF dual-hosted git repository. lide pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new 2159a719bfd [branch-1.2](bug) Fix revise tablet causes replica_id is 0 in tablet meta in version 1.2 (#25728) 2159a719bfd is described below commit 2159a719bfdd00ee89c4a706f57980d37cb5428d Author: xy720 <22125576+xy...@users.noreply.github.com> AuthorDate: Wed Oct 25 14:16:01 2023 +0800 [branch-1.2](bug) Fix revise tablet causes replica_id is 0 in tablet meta in version 1.2 (#25728) --- be/src/olap/tablet_meta.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/be/src/olap/tablet_meta.cpp b/be/src/olap/tablet_meta.cpp index a7029913a8c..07448797f85 100644 --- a/be/src/olap/tablet_meta.cpp +++ b/be/src/olap/tablet_meta.cpp @@ -229,6 +229,7 @@ TabletMeta::TabletMeta(const TabletMeta& b) : _table_id(b._table_id), _partition_id(b._partition_id), _tablet_id(b._tablet_id), + _replica_id(b._replica_id), _schema_hash(b._schema_hash), _shard_id(b._shard_id), _creation_time(b._creation_time), --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org