Skip to content

Commit 24e4086

Browse files
committed
Fixed build 1
1 parent f22b617 commit 24e4086

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ydb/library/yql/dq/runtime/dq_arrow_helpers.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,10 +1054,8 @@ class TBlockSplitter : public IBlockSplitter {
10541054
}
10551055

10561056
std::vector<std::vector<arrow::Datum>> SplitItem(const NUdf::TUnboxedValuePod* values, ui32 count) override {
1057-
values = UnwrapItem(values, count);
1058-
10591057
SplitStack.clear();
1060-
SplitStack.emplace_back(values, count, BlockLenIndex);
1058+
SplitStack.emplace_back(*this, UnwrapItem(values, count));
10611059
std::vector<std::vector<arrow::Datum>> result;
10621060

10631061
const auto estimatedSize = SplitStack.back().GetSize() / ChunkSizeLimit;

0 commit comments

Comments
 (0)