(expr: &Expr, schema: &Schema)
| 607 | } |
| 608 | |
| 609 | fn lower_cast_expr(expr: &Expr, schema: &Schema) -> Result<Arc<dyn PhysicalExpr>> { |
| 610 | let df_schema = DFSchema::try_from(schema.clone())?; |
| 611 | create_physical_expr(expr, &df_schema, &ExecutionProps::new()) |
| 612 | } |
| 613 | |
| 614 | fn as_planner_cast(physical: &Arc<dyn PhysicalExpr>) -> &expressions::CastExpr { |
| 615 | physical |
searching dependent graphs…