Skip to content

Commit

Permalink
[native] Move queryCtx in TaskManager::createOrUpdateTask
Browse files Browse the repository at this point in the history
  • Loading branch information
zuyu committed Nov 6, 2024
1 parent 2555927 commit c7a9be9
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 c7a9be9

Please sign in to comment.