diff options
author | Alexey Ozeritskiy <aozeritsky@gmail.com> | 2022-06-17 01:08:26 +0300 |
---|---|---|
committer | Alexey Ozeritskiy <aozeritsky@gmail.com> | 2022-06-17 01:08:26 +0300 |
commit | ecef3b974fb0731c0436f5247e6d8a51600aff82 (patch) | |
tree | a5d2f4453883b445dd2714c46814af7475f7c4bc | |
parent | fd71d77d1ff994c8c50a0c861a12ac37f9b0c908 (diff) | |
download | ydb-ecef3b974fb0731c0436f5247e6d8a51600aff82.tar.gz |
YQL-14406: Remove redundant std::move
ref:6089403a024e3ce882029c09b81b797bbb17a526
-rw-r--r-- | ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp | 6 |
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(); |