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 158df61 commit 815426aCopy full SHA for 815426a
ydb/library/yql/dq/runtime/dq_arrow_helpers.cpp
@@ -1008,8 +1008,8 @@ class TBlockSplitter : public IBlockSplitter {
1008
std::vector<arrow::Datum> backData = Data;
1009
for (ui64 i : ArraysIdx) {
1010
const auto& array = *Data[i].array();
1011
- Data[i] = arrow::Datum(array.Slice(0, offset));
1012
- backData[i] = arrow::Datum(array.Slice(offset, length));
+ Data[i] = array.Slice(0, offset);
+ backData[i] = array.Slice(offset, length);
1013
}
1014
1015
NumberRows -= length;
0 commit comments