(
&self,
args: Vec<Expr>,
)
| 35 | } |
| 36 | |
| 37 | fn plan_substring( |
| 38 | &self, |
| 39 | args: Vec<Expr>, |
| 40 | ) -> datafusion_common::Result<PlannerResult<Vec<Expr>>> { |
| 41 | Ok(PlannerResult::Planned(Expr::ScalarFunction( |
| 42 | ScalarFunction::new_udf(crate::unicode::substr(), args), |
| 43 | ))) |
| 44 | } |
| 45 | } |
nothing calls this directly
no test coverage detected