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

Class SetComparison

datafusion/expr/src/expr.rs:1311–1320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1309/// Set comparison subquery (e.g. `= ANY`, `> ALL`)
1310#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
1311pub struct SetComparison {
1312 /// The expression to compare
1313 pub expr: Box<Expr>,
1314 /// Subquery that will produce a single column of data to compare against
1315 pub subquery: Subquery,
1316 /// Comparison operator (e.g. `=`, `>`, `<`)
1317 pub op: Operator,
1318 /// Quantifier (`ANY`/`ALL`)
1319 pub quantifier: SetQuantifier,
1320}
1321
1322impl SetComparison {
1323 /// Create a new set comparison expression

Callers 8

map_childrenMethod · 0.85
map_subqueriesMethod · 0.85
from_set_comparisonFunction · 0.85
from_subqueryFunction · 0.85
f_upMethod · 0.85

Calls

no outgoing calls

Tested by 2

Used in the wild real call sites across dependent graphs

searching dependent graphs…