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 92a1443 commit e4fab67Copy full SHA for e4fab67
ydb/library/yql/dq/runtime/dq_arrow_helpers.cpp
@@ -992,13 +992,13 @@ class TBlockSplitter : public IBlockSplitter {
992
return ScalarsSize + ArraysSize;
993
}
994
995
- std::vector<arrow::Datum>&& ExtractData() {
+ std::vector<arrow::Datum> ExtractData() {
996
std::vector<arrow::Datum> result(std::move(Data));
997
for (ui64 i : ArraysIdx) {
998
result[i] = Self.GetColumnTrimmer(i).Trim(result[i].array());
999
1000
result[Self.BlockLenIndex] = arrow::Datum(std::make_shared<arrow::UInt64Scalar>(NumberRows));
1001
- return std::move(Data);
+ return result;
1002
1003
1004
TItem PopBack(ui64 length) {
0 commit comments