| 105 | } |
| 106 | |
| 107 | bool waitForTaskCompletion( |
| 108 | exec::Task* task, |
| 109 | uint64_t maxWaitMicros = 1'000'000) { |
| 110 | return waitForTaskFinish(task, TaskState::kFinished, maxWaitMicros); |
| 111 | } |
| 112 | |
| 113 | std::shared_ptr<Task> assertQuery( |
| 114 | const core::PlanNodePtr& plan, |
nothing calls this directly
no test coverage detected