From 1e5cd9dc6ebf042c5d60d4a00df60335e4728c10 Mon Sep 17 00:00:00 2001 From: smellthemoon <64083300+smellthemoon@users.noreply.github.com> Date: Mon, 26 Dec 2022 15:27:30 +0800 Subject: [PATCH] Modify comment (#21362) Signed-off-by: lixinguo Co-authored-by: lixinguo --- internal/core/unittest/test_c_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/core/unittest/test_c_api.cpp b/internal/core/unittest/test_c_api.cpp index b064bc3514..dca13498f8 100644 --- a/internal/core/unittest/test_c_api.cpp +++ b/internal/core/unittest/test_c_api.cpp @@ -732,7 +732,7 @@ TEST(CApiTest, InsertSamePkAfterDeleteOnSealedSegment) { int N = 10; auto dataset = DataGen(col->get_schema(), N, 42, 0, 2); - // insert data with pks = {0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5} , timestamps = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} + // insert data with pks = {0, 0, 1, 1, 2, 2, 3, 3, 4, 4} , timestamps = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} for (auto& [field_id, field_meta] : col->get_schema()->get_fields()) { auto array = dataset.get_col(field_id); auto data = serialize(array.get());