Skip to content

Commit 3107cf6

Browse files
author
Qi Chen
committed
ensure metadata size
1 parent bcafeb7 commit 3107cf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Test/src/TestDataGenerator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ std::shared_ptr<VectorSet> TestDataGenerator<T>::GenerateRandomVectorSet(SizeTyp
436436
template <typename T>
437437
std::shared_ptr<MetadataSet> TestDataGenerator<T>::GenerateMetadataSet(SizeType count, SizeType offsetBase)
438438
{
439-
ByteArray meta = ByteArray::Alloc(count * 6);
439+
ByteArray meta = ByteArray::Alloc(count * 10);
440440
ByteArray metaoffset = ByteArray::Alloc((count + 1) * sizeof(std::uint64_t));
441441
std::uint64_t offset = 0;
442442
for (SizeType i = 0; i < count; i++)

0 commit comments

Comments
 (0)