| 182 | } |
| 183 | |
| 184 | static void addRemoteSplits( |
| 185 | const std::shared_ptr<Task>& task, |
| 186 | const std::vector<std::string>& remoteTaskIds) { |
| 187 | for (auto& taskId : remoteTaskIds) { |
| 188 | task->addSplit("0", remoteSplit(taskId)); |
| 189 | } |
| 190 | task->noMoreSplits("0"); |
| 191 | } |
| 192 | |
| 193 | std::shared_ptr<Task> assertQuery( |
| 194 | const core::PlanNodePtr& plan, |
nothing calls this directly
no test coverage detected