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

Class BinaryExpr

datafusion/physical-expr/src/expressions/binary.rs:59–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57/// Binary expression
58#[derive(Debug, Clone, Eq)]
59pub struct BinaryExpr {
60 left: Arc<dyn PhysicalExpr>,
61 op: Operator,
62 right: Arc<dyn PhysicalExpr>,
63 /// Specifies whether an error is returned on overflow or not
64 fail_on_overflow: bool,
65}
66
67// Manually derive PartialEq and Hash to work around https://github.com/rust-lang/rust/issues/78808
68impl PartialEq for BinaryExpr {

Callers 7

serialize_exprFunction · 0.50
parse_exprFunction · 0.50
testFunction · 0.50
is_not_distinct_fromFunction · 0.50
is_distinct_fromFunction · 0.50

Calls

no outgoing calls

Tested by 2

testFunction · 0.40

Used in the wild real call sites across dependent graphs

searching dependent graphs…