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

Function unnormalize_cols

datafusion/expr/src/expr_rewriter/mod.rs:199–201  ·  view source on GitHub ↗
(exprs: impl IntoIterator<Item = Expr>)

Source from the content-addressed store, hash-verified

197/// Recursively un-normalize all [`Column`] expressions in a list of expression trees
198#[inline]
199pub fn unnormalize_cols(exprs: impl IntoIterator<Item = Expr>) -> Vec<Expr> {
200 exprs.into_iter().map(unnormalize_col).collect()
201}
202
203/// Recursively remove all the ['OuterReferenceColumn'] and return the inside Column
204/// in the expression tree.

Callers 1

Calls 5

unnormalize_colFunction · 0.85
collectMethod · 0.80
colFunction · 0.50
mapMethod · 0.45
into_iterMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…