| 517 | /// [`LogicalPlan::resolve_lambda_variables`]: crate::LogicalPlan::resolve_lambda_variables |
| 518 | #[derive(Clone, PartialEq, PartialOrd, Eq, Debug, Hash)] |
| 519 | pub struct LambdaVariable { |
| 520 | pub name: String, |
| 521 | pub field: Option<FieldRef>, |
| 522 | pub spans: Spans, |
| 523 | } |
| 524 | |
| 525 | impl LambdaVariable { |
| 526 | /// Create a lambda variable from a name and an optional field. |
no outgoing calls
searching dependent graphs…