(
&self,
exprs: Vec<Expr>,
_schema: &DFSchema,
)
| 408 | |
| 409 | impl ExprPlanner for CustomExprPlanner { |
| 410 | fn plan_array_literal( |
| 411 | &self, |
| 412 | exprs: Vec<Expr>, |
| 413 | _schema: &DFSchema, |
| 414 | ) -> Result<PlannerResult<Vec<Expr>>> { |
| 415 | Ok(PlannerResult::Planned(make_array(exprs))) |
| 416 | } |
| 417 | } |
no test coverage detected