From 28cea5e7637307bc6601dd32b9d04b4a7803a35e Mon Sep 17 00:00:00 2001 From: smellthemoon <64083300+smellthemoon@users.noreply.github.com> Date: Mon, 7 Aug 2023 19:23:08 +0800 Subject: [PATCH] Fix func typo (#26167) Signed-off-by: lixinguo Co-authored-by: lixinguo --- internal/core/src/segcore/SegmentGrowingImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/core/src/segcore/SegmentGrowingImpl.cpp b/internal/core/src/segcore/SegmentGrowingImpl.cpp index 5fb0670e9b..3f816ab696 100644 --- a/internal/core/src/segcore/SegmentGrowingImpl.cpp +++ b/internal/core/src/segcore/SegmentGrowingImpl.cpp @@ -343,7 +343,7 @@ SegmentGrowingImpl::bulk_subscript(FieldId field_id, return CreateScalarDataArrayFrom(output.data(), count, field_meta); } case DataType::INT8: { - FixedVector output(count); + FixedVector output(count); bulk_subscript_impl( *vec_ptr, seg_offsets, count, output.data()); return CreateScalarDataArrayFrom(output.data(), count, field_meta);