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

Function in_list

datafusion/expr/src/expr_fn.rs:246–248  ·  view source on GitHub ↗

Create an in_list expression

(expr: Expr, list: Vec<Expr>, negated: bool)

Source from the content-addressed store, hash-verified

244
245/// Create an in_list expression
246pub fn in_list(expr: Expr, list: Vec<Expr>, negated: bool) -> Expr {
247 Expr::InList(InList::new(Box::new(expr), list, negated))
248}
249
250/// Create an EXISTS subquery expression
251pub fn exists(subquery: Arc<LogicalPlan>) -> Expr {

Callers 7

simplifyMethod · 0.50
simplify_inlistFunction · 0.50

Calls 2

InListClass · 0.85
newFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…