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

Function is_not_distinct_from

datafusion/pruning/src/pruning_predicate.rs:5731–5737  ·  view source on GitHub ↗
(left: Expr, right: Expr)

Source from the content-addressed store, hash-verified

5729 }
5730
5731 fn is_not_distinct_from(left: Expr, right: Expr) -> Expr {
5732 Expr::BinaryExpr(BinaryExpr::new(
5733 Box::new(left),
5734 Operator::IsNotDistinctFrom,
5735 Box::new(right),
5736 ))
5737 }
5738
5739 fn is_distinct_from(left: Expr, right: Expr) -> Expr {
5740 Expr::BinaryExpr(BinaryExpr::new(

Callers 1

Calls 2

newFunction · 0.85
BinaryExprClass · 0.50

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…