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

Class BinaryExpr

datafusion/expr/src/expr.rs:772–779  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

770/// Binary expression for [`Expr::BinaryExpr`]
771#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
772pub struct BinaryExpr {
773 /// Left-hand side of the expression
774 pub left: Box<Expr>,
775 /// The comparison operator
776 pub op: Operator,
777 /// Right-hand side of the expression
778 pub right: Box<Expr>,
779}
780
781impl BinaryExpr {
782 /// Create a new binary expression

Callers 15

map_childrenMethod · 0.70
binary_exprFunction · 0.70
andFunction · 0.70
orFunction · 0.70
bitwise_andFunction · 0.70
bitwise_orFunction · 0.70
bitwise_xorFunction · 0.70
bitwise_shift_rightFunction · 0.70
bitwise_shift_leftFunction · 0.70
expr_apiFunction · 0.50
type_coercion_demoFunction · 0.50
rewrite_binary_exprFunction · 0.50

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…