MCPcopy Create free account
hub / github.com/apache/datafusion / unnest

Function unnest

datafusion/expr/src/expr_fn.rs:390–394  ·  view source on GitHub ↗

Create a Unnest expression

(expr: Expr)

Source from the content-addressed store, hash-verified

388
389/// Create a Unnest expression
390pub 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.

Calls 2

newFunction · 0.85
UnnestClass · 0.70

Used in the wild real call sites across dependent graphs

searching dependent graphs…