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 f22b617 commit 24e4086Copy full SHA for 24e4086
ydb/library/yql/dq/runtime/dq_arrow_helpers.cpp
@@ -1054,10 +1054,8 @@ class TBlockSplitter : public IBlockSplitter {
1054
}
1055
1056
std::vector<std::vector<arrow::Datum>> SplitItem(const NUdf::TUnboxedValuePod* values, ui32 count) override {
1057
- values = UnwrapItem(values, count);
1058
-
1059
SplitStack.clear();
1060
- SplitStack.emplace_back(values, count, BlockLenIndex);
+ SplitStack.emplace_back(*this, UnwrapItem(values, count));
1061
std::vector<std::vector<arrow::Datum>> result;
1062
1063
const auto estimatedSize = SplitStack.back().GetSize() / ChunkSizeLimit;
0 commit comments