Skip to content

Commit 815426a

Browse files
committed
Cleanup 3
1 parent 158df61 commit 815426a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,8 +1008,8 @@ class TBlockSplitter : public IBlockSplitter {
10081008
std::vector<arrow::Datum> backData = Data;
10091009
for (ui64 i : ArraysIdx) {
10101010
const auto& array = *Data[i].array();
1011-
Data[i] = arrow::Datum(array.Slice(0, offset));
1012-
backData[i] = arrow::Datum(array.Slice(offset, length));
1011+
Data[i] = array.Slice(0, offset);
1012+
backData[i] = array.Slice(offset, length);
10131013
}
10141014

10151015
NumberRows -= length;

0 commit comments

Comments
 (0)