From 59881a7f73b595e2f89612810efaff74f0bf61c7 Mon Sep 17 00:00:00 2001 From: congqixia Date: Tue, 18 Feb 2025 16:24:51 +0800 Subject: [PATCH] fix: Remove load field & schema column size check (#39833) Related to #39788 --------- Signed-off-by: Congqi Xia --- internal/core/src/segcore/SegmentGrowingImpl.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/core/src/segcore/SegmentGrowingImpl.cpp b/internal/core/src/segcore/SegmentGrowingImpl.cpp index c4715f931f5c2..5b41531d9bca3 100644 --- a/internal/core/src/segcore/SegmentGrowingImpl.cpp +++ b/internal/core/src/segcore/SegmentGrowingImpl.cpp @@ -185,9 +185,6 @@ SegmentGrowingImpl::Insert(int64_t reserved_offset, void SegmentGrowingImpl::LoadFieldData(const LoadFieldDataInfo& infos) { - // schema don't include system field - AssertInfo(infos.field_infos.size() == schema_->size(), - "lost some field data when load for growing segment"); AssertInfo(infos.field_infos.find(TimestampFieldID.get()) != infos.field_infos.end(), "timestamps field data should be included");