aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Ozeritskiy <aozeritsky@gmail.com>2022-06-17 01:08:26 +0300
committerAlexey Ozeritskiy <aozeritsky@gmail.com>2022-06-17 01:08:26 +0300
commitecef3b974fb0731c0436f5247e6d8a51600aff82 (patch)
treea5d2f4453883b445dd2714c46814af7475f7c4bc
parentfd71d77d1ff994c8c50a0c861a12ac37f9b0c908 (diff)
downloadydb-ecef3b974fb0731c0436f5247e6d8a51600aff82.tar.gz
YQL-14406: Remove redundant std::move
ref:6089403a024e3ce882029c09b81b797bbb17a526
-rw-r--r--ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp b/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp
index 713bf2cc36f..8d1aaa87478 100644
--- a/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp
+++ b/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp
@@ -790,7 +790,7 @@ private:
}
} else {
future = State->DqGateway->ExecutePlan(
- State->SessionId, std::move(executionPlanner->GetPlan()), columns, secureParams, graphParams,
+ State->SessionId, executionPlanner->GetPlan(), columns, secureParams, graphParams,
settings, progressWriter, ModulesMapping, fillSettings.Discard);
}
}
@@ -1149,7 +1149,7 @@ private:
IDqGateway::TDqProgressWriter progressWriter = MakeDqProgressWriter(publicIds);
- auto future = State->DqGateway->ExecutePlan(State->SessionId, std::move(executionPlanner->GetPlan()), columns, secureParams, graphParams,
+ auto future = State->DqGateway->ExecutePlan(State->SessionId, executionPlanner->GetPlan(), columns, secureParams, graphParams,
settings, progressWriter, ModulesMapping, fillSettings.Discard);
future.Subscribe([publicIds, progressWriter = State->ProgressWriter](const NThreading::TFuture<IDqGateway::TResult>& completedFuture) {
@@ -1595,7 +1595,7 @@ private:
IDqGateway::TDqProgressWriter progressWriter = MakeDqProgressWriter(publicIds);
- auto future = State->DqGateway->ExecutePlan(State->SessionId, std::move(executionPlanner->GetPlan()), {}, secureParams, graphParams,
+ auto future = State->DqGateway->ExecutePlan(State->SessionId, executionPlanner->GetPlan(), {}, secureParams, graphParams,
settings, progressWriter, ModulesMapping, false);
executionPlanner.Destroy();