Returns true if there are any column references in this Expr
(&self)
| 2114 | |
| 2115 | /// Returns true if there are any column references in this Expr |
| 2116 | pub fn any_column_refs(&self) -> bool { |
| 2117 | self.exists(|expr| Ok(matches!(expr, Expr::Column(_)))) |
| 2118 | .expect("exists closure is infallible") |
| 2119 | } |
| 2120 | |
| 2121 | /// Return true if the expression contains out reference(correlated) expressions. |
| 2122 | pub fn contains_outer(&self) -> bool { |
no test coverage detected