Skip to content

Commit

Permalink
[native] Move queryCtx in TaskManager::createOrUpdateTask (prestodb#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
zuyu authored Nov 7, 2024
1 parent ef142c6 commit 708f63f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion presto-native-execution/presto_cpp/main/TaskManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/

#include "presto_cpp/main/TaskManager.h"

#include <utility>

#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <folly/container/F14Set.h>
Expand Down Expand Up @@ -434,7 +437,7 @@ std::unique_ptr<protocol::TaskInfo> TaskManager::createOrUpdateTask(
planFragment,
updateRequest.sources,
updateRequest.outputIds,
queryCtx,
std::move(queryCtx),
startProcessCpuTime);
}

Expand Down

0 comments on commit 708f63f

Please sign in to comment.