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

Method contains_outer

datafusion/expr/src/expr.rs:2122–2125  ·  view source on GitHub ↗

Return true if the expression contains out reference(correlated) expressions.

(&self)

Source from the content-addressed store, hash-verified

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 {

Callers 5

find_join_exprsFunction · 0.80
f_upMethod · 0.80

Calls 1

existsMethod · 0.80

Tested by

no test coverage detected