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

Class Between

datafusion/expr/src/expr.rs:901–910  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

899/// BETWEEN expression
900#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
901pub struct Between {
902 /// The value to compare
903 pub expr: Box<Expr>,
904 /// Whether the expression is negated
905 pub negated: bool,
906 /// The low end of the range
907 pub low: Box<Expr>,
908 /// The high end of the range
909 pub high: Box<Expr>,
910}
911
912impl Between {
913 /// Create a new Between expression

Callers 13

map_childrenMethod · 0.85
betweenMethod · 0.85
not_betweenMethod · 0.85
rewrite_betweenFunction · 0.85
serialize_exprFunction · 0.85
parse_exprFunction · 0.85
roundtrip_betweenFunction · 0.85
build_between_exprMethod · 0.85
f_upMethod · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…