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

Method gt

datafusion/expr/src/expr.rs:1702–1704  ·  view source on GitHub ↗

Return `self > other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1700
1701 /// Return `self > other`
1702 pub fn gt(self, other: Expr) -> Expr {
1703 binary_expr(self, Operator::Gt, other)
1704 }
1705
1706 /// Return `self >= other`
1707 pub fn gt_eq(self, other: Expr) -> Expr {

Callers 15

expr_fn_demoFunction · 0.45
range_analysis_demoFunction · 0.45
type_coercion_demoFunction · 0.45
read_parquetFunction · 0.45
where_scalar_subqueryFunction · 0.45
query_dataframeFunction · 0.45
custom_datasourceFunction · 0.45

Calls 1

binary_exprFunction · 0.70