fix: fix wrong assgin to chunk object (#42672)

#39173

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
This commit is contained in:
zhagnlu 2025-06-15 21:18:37 +08:00 committed by GitHub
parent 201e980d3d
commit d35c33da9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,7 +228,7 @@ GroupChunkTranslator::load_group_chunk(
auto file =
File::Open(filepath.string(), O_CREAT | O_TRUNC | O_RDWR);
auto chunk = create_chunk(field_meta, dim, file, 0, array_vec);
chunk = create_chunk(field_meta, dim, file, 0, array_vec);
auto ok = unlink(filepath.c_str());
AssertInfo(
ok == 0,