(
&self,
expr: Expr,
df_schema: &DFSchema,
)
| 275 | } |
| 276 | |
| 277 | fn create_physical_expr( |
| 278 | &self, |
| 279 | expr: Expr, |
| 280 | df_schema: &DFSchema, |
| 281 | ) -> datafusion_common::Result<Arc<dyn PhysicalExpr>> { |
| 282 | self.create_physical_expr(expr, df_schema) |
| 283 | } |
| 284 | |
| 285 | fn scalar_functions(&self) -> &HashMap<String, Arc<ScalarUDF>> { |
| 286 | &self.scalar_functions |
nothing calls this directly
no test coverage detected