(
&mut self,
expr: sqlparser::ast::Expr,
schema: &DFSchema,
)
| 51 | } |
| 52 | |
| 53 | fn sql_to_expr( |
| 54 | &mut self, |
| 55 | expr: sqlparser::ast::Expr, |
| 56 | schema: &DFSchema, |
| 57 | ) -> Result<Expr> { |
| 58 | self.planner.sql_to_expr(expr, schema, self.planner_context) |
| 59 | } |
| 60 | |
| 61 | fn sql_expr_to_logical_expr( |
| 62 | &mut self, |