Execute a physical plan. Dispatches to the appropriate sub-dispatcher.
(&mut self, task: &ExecutionTask)
| 28 | impl CoreLoop { |
| 29 | /// Execute a physical plan. Dispatches to the appropriate sub-dispatcher. |
| 30 | pub(in crate::data::executor) fn execute(&mut self, task: &ExecutionTask) -> Response { |
| 31 | self.execute_plan(task, task.plan()) |
| 32 | } |
| 33 | |
| 34 | /// Execute an arbitrary physical plan (used for inline sub-plans in multi-way joins). |
| 35 | pub(in crate::data::executor) fn execute_plan( |
no test coverage detected