Create a Unnest expression
(expr: Expr)
| 388 | |
| 389 | /// Create a Unnest expression |
| 390 | pub fn unnest(expr: Expr) -> Expr { |
| 391 | Expr::Unnest(Unnest { |
| 392 | expr: Box::new(expr), |
| 393 | }) |
| 394 | } |
| 395 | |
| 396 | /// Convenience method to create a new user defined scalar function (UDF) with a |
| 397 | /// specific signature and specific return type. |
searching dependent graphs…