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

Class InSubquery

datafusion/expr/src/expr.rs:1363–1370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1361/// IN subquery
1362#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
1363pub struct InSubquery {
1364 /// The expression to compare
1365 pub expr: Box<Expr>,
1366 /// Subquery that will produce a single column of data to compare against
1367 pub subquery: Subquery,
1368 /// Whether the expression is negated
1369 pub negated: bool,
1370}
1371
1372impl InSubquery {
1373 /// Create a new InSubquery expression

Callers 12

notMethod · 0.85
map_childrenMethod · 0.85
in_subqueryFunction · 0.85
not_in_subqueryFunction · 0.85
map_subqueriesMethod · 0.85
parse_in_subqueryMethod · 0.85
from_subqueryFunction · 0.85
f_upMethod · 0.85
in_subquery_cast_exprFunction · 0.85
in_subquery_cast_allFunction · 0.85
f_upMethod · 0.85

Calls

no outgoing calls

Tested by 3

in_subquery_cast_exprFunction · 0.68
in_subquery_cast_allFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…