| 161 | } |
| 162 | |
| 163 | static PlanNodeStats getTableScanStats(const std::shared_ptr<Task>& task) { |
| 164 | auto planStats = toPlanStats(task->taskStats()); |
| 165 | return std::move(planStats.at("0")); |
| 166 | } |
| 167 | |
| 168 | static std::unordered_map<std::string, RuntimeMetric> |
| 169 | getTableScanRuntimeStats(const std::shared_ptr<Task>& task) { |
nothing calls this directly
no test coverage detected