(&self, args: Vec<Expr>)
| 49 | |
| 50 | #[cfg(feature = "unicode_expressions")] |
| 51 | fn plan_substring(&self, args: Vec<Expr>) -> Result<PlannerResult<Vec<Expr>>> { |
| 52 | Ok(PlannerResult::Planned(Expr::ScalarFunction( |
| 53 | ScalarFunction::new_udf(crate::unicode::substr(), args), |
| 54 | ))) |
| 55 | } |
| 56 | } |
nothing calls this directly
no test coverage detected