(name: &str, dt: DataType, nullable: bool)
| 1676 | } |
| 1677 | |
| 1678 | fn resolved_lambda_var(name: &str, dt: DataType, nullable: bool) -> Expr { |
| 1679 | Expr::LambdaVariable(LambdaVariable::new( |
| 1680 | name.into(), |
| 1681 | Some(Arc::new(Field::new(name, dt, nullable))), |
| 1682 | )) |
| 1683 | } |
| 1684 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…