(
&self,
args: Vec<FunctionArg>,
schema: &DFSchema,
planner_context: &mut PlannerContext,
)
| 1102 | } |
| 1103 | |
| 1104 | pub(super) fn function_args_to_expr( |
| 1105 | &self, |
| 1106 | args: Vec<FunctionArg>, |
| 1107 | schema: &DFSchema, |
| 1108 | planner_context: &mut PlannerContext, |
| 1109 | ) -> Result<Vec<Expr>> { |
| 1110 | args.into_iter() |
| 1111 | .map(|a| self.sql_fn_arg_to_logical_expr(a, schema, planner_context)) |
| 1112 | .collect::<Result<Vec<Expr>>>() |
| 1113 | } |
| 1114 | |
| 1115 | pub(super) fn function_args_to_expr_with_names( |
| 1116 | &self, |
no test coverage detected