From 6d76f8ff2271ff2dc1fd04c6427baf2e687ffe9d Mon Sep 17 00:00:00 2001 From: Hongqin-Li Date: Mon, 6 Jan 2025 12:44:56 +0000 Subject: [PATCH] Fix unserialized spilt_src_tablet_id in tablet_meta --- src/share/ob_ddl_common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/share/ob_ddl_common.cpp b/src/share/ob_ddl_common.cpp index 63f2a8441..d3cd38c3f 100644 --- a/src/share/ob_ddl_common.cpp +++ b/src/share/ob_ddl_common.cpp @@ -4196,7 +4196,7 @@ int ObSplitUtil::deserializ_parallel_datum_rowkey( } return ret; } -OB_SERIALIZE_MEMBER(ObSplitTabletInfo, split_info_); +OB_SERIALIZE_MEMBER(ObSplitTabletInfo, split_info_, split_src_tablet_id_); //record trace_id ObDDLEventInfo::ObDDLEventInfo() @@ -4234,4 +4234,4 @@ void ObDDLEventInfo::copy_event(const ObDDLEventInfo &other) parent_trace_id_ = other.parent_trace_id_; trace_id_ = other.trace_id_; event_ts_ = other.event_ts_; -} \ No newline at end of file +}