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

Method gt_eq

datafusion/expr/src/expr.rs:1707–1709  ·  view source on GitHub ↗

Return `self >= other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1705
1706 /// Return `self >= other`
1707 pub fn gt_eq(self, other: Expr) -> Expr {
1708 binary_expr(self, Operator::GtEq, other)
1709 }
1710
1711 /// Return `self < other`
1712 pub fn lt(self, other: Expr) -> Expr {

Callers 15

get_propertiesMethod · 0.45
rewrite_betweenFunction · 0.45
plan_any_opFunction · 0.45
plan_all_opFunction · 0.45
test_utf8_gt_eqFunction · 0.45
cosh_orderFunction · 0.45
ln_orderFunction · 0.45
log2_orderFunction · 0.45

Calls 1

binary_exprFunction · 0.70