Return true if the expression contains out reference(correlated) expressions.
(&self)
| 2120 | |
| 2121 | /// Return true if the expression contains out reference(correlated) expressions. |
| 2122 | pub fn contains_outer(&self) -> bool { |
| 2123 | self.exists(|expr| Ok(matches!(expr, Expr::OuterReferenceColumn { .. }))) |
| 2124 | .expect("exists closure is infallible") |
| 2125 | } |
| 2126 | |
| 2127 | /// Returns true if the expression contains a scalar subquery. |
| 2128 | pub fn contains_scalar_subquery(&self) -> bool { |
no test coverage detected