(
&self,
logical_plan: &LogicalPlan,
)
| 268 | } |
| 269 | |
| 270 | async fn create_physical_plan( |
| 271 | &self, |
| 272 | logical_plan: &LogicalPlan, |
| 273 | ) -> datafusion_common::Result<Arc<dyn ExecutionPlan>> { |
| 274 | self.create_physical_plan(logical_plan).await |
| 275 | } |
| 276 | |
| 277 | fn create_physical_expr( |
| 278 | &self, |
no test coverage detected