(exprs: impl IntoIterator<Item = Expr>)
| 197 | /// Recursively un-normalize all [`Column`] expressions in a list of expression trees |
| 198 | #[inline] |
| 199 | pub 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. |
no test coverage detected
searching dependent graphs…