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

Class InList

datafusion/expr/src/expr.rs:1341–1348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1339/// InList expression
1340#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
1341pub struct InList {
1342 /// The expression to compare
1343 pub expr: Box<Expr>,
1344 /// The list of values to compare against
1345 pub list: Vec<Expr>,
1346 /// Whether the expression is negated
1347 pub negated: bool,
1348}
1349
1350impl InList {
1351 /// Create a new InList expression

Callers 15

notMethod · 0.85
map_childrenMethod · 0.85
in_listFunction · 0.85
in_listMethod · 0.85
rewrite_inlistFunction · 0.85
sql_in_list_to_exprMethod · 0.85
collect_left_inputFunction · 0.85
serialize_exprFunction · 0.85
parse_exprFunction · 0.85
roundtrip_inlistFunction · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…