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 cd9f2dd commit 004ee32Copy full SHA for 004ee32
presto-native-execution/presto_cpp/main/TaskManager.cpp
@@ -523,7 +523,9 @@ std::unique_ptr<TaskInfo> TaskManager::createOrUpdateTaskImpl(
523
planFragment,
524
prestoTask->id.id(),
525
std::move(queryCtx),
526
- exec::Task::ExecutionMode::kParallel);
+ exec::Task::ExecutionMode::kParallel,
527
+ static_cast<exec::Consumer>(nullptr),
528
+ prestoTask->id.stageId());
529
// TODO: move spill directory creation inside velox task execution
530
// whenever spilling is triggered. It will reduce the unnecessary file
531
// operations on remote storage.
0 commit comments