| 166 | } |
| 167 | |
| 168 | static std::unordered_map<std::string, RuntimeMetric> |
| 169 | getTableScanRuntimeStats(const std::shared_ptr<Task>& task) { |
| 170 | return task->taskStats().pipelineStats[0].operatorStats[0].runtimeStats; |
| 171 | } |
| 172 | |
| 173 | static int64_t getSkippedStridesStat(const std::shared_ptr<Task>& task) { |
| 174 | return getTableScanRuntimeStats(task)["skippedStrides"].sum; |