We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8792168 commit 76b249aCopy full SHA for 76b249a
ydb/library/formats/arrow/splitter/stats.cpp
@@ -45,7 +45,7 @@ std::vector<i64> TSimpleSerializationStat::SplitRecords(
45
}
46
47
std::vector<i64> TBatchSerializationStat::SplitRecordsForBlobSize(const i64 recordsCount, const ui64 blobSize) const {
48
- if (!SerializedBytes) {
+ if (!SerializedBytes || blobSize < GetSerializedBytesPerRecord()) {
49
return { recordsCount };
50
51
const ui32 recordsCountPerBlob = blobSize / GetSerializedBytesPerRecord();
0 commit comments