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

Method eq

datafusion/physical-expr/src/aggregate.rs:1084–1094  ·  view source on GitHub ↗
(&self, other: &Self)

Source from the content-addressed store, hash-verified

1082
1083impl PartialEq for AggregateFunctionExpr {
1084 fn eq(&self, other: &Self) -> bool {
1085 self.name == other.name
1086 && self.return_field == other.return_field
1087 && self.fun == other.fun
1088 && self.args.len() == other.args.len()
1089 && self
1090 .args
1091 .iter()
1092 .zip(other.args.iter())
1093 .all(|(this_arg, other_arg)| this_arg.eq(other_arg))
1094 }
1095}
1096
1097fn replace_order_by_clause(order_by: &mut String) {

Callers 9

physical_exprs_containsFunction · 0.45
physical_exprs_equalFunction · 0.45
shrink_boundariesFunction · 0.45
can_combineFunction · 0.45
expected_expr_positionsFunction · 0.45
optimizeMethod · 0.45
transform_limitMethod · 0.45

Calls 3

allMethod · 0.80
lenMethod · 0.45
iterMethod · 0.45