Create an unresolved lambda variable expression The expression tree or [`LogicalPlan`] which owns this variable must be resolved before usage with either [`Expr::resolve_lambda_variables`] or [`LogicalPlan::resolve_lambda_variables`]. [LogicalPlan::resolve_lambda_variables]: crate::LogicalPlan::resolve_lambda_variables
(name: impl Into<String>)
| 736 | /// |
| 737 | /// [LogicalPlan::resolve_lambda_variables]: crate::LogicalPlan::resolve_lambda_variables |
| 738 | pub fn lambda_var(name: impl Into<String>) -> Expr { |
| 739 | Expr::LambdaVariable(LambdaVariable::new(name.into(), None)) |
| 740 | } |
| 741 | |
| 742 | /// Extensions for configuring [`Expr::AggregateFunction`] or [`Expr::WindowFunction`] |
| 743 | /// |
nothing calls this directly
no test coverage detected
searching dependent graphs…