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

Function max

datafusion/expr/src/test/function_stub.rs:363–372  ·  view source on GitHub ↗
(expr: Expr)

Source from the content-addressed store, hash-verified

361create_func!(Max, max_udaf);
362
363pub fn max(expr: Expr) -> Expr {
364 Expr::AggregateFunction(AggregateFunction::new_udf(
365 max_udaf(),
366 vec![expr],
367 false,
368 None,
369 vec![],
370 None,
371 ))
372}
373
374/// Testing stub implementation of MAX aggregate
375#[derive(PartialEq, Eq, Hash)]

Callers 15

join_suffixMethod · 0.85
adjusted_from_indexFunction · 0.85
parse_decimalFunction · 0.85
get_tree_width_heightFunction · 0.85
build_batchFunction · 0.85
describeMethod · 0.85
partition_statisticsMethod · 0.85
newMethod · 0.85
run_testsFunction · 0.85
mergeMethod · 0.85

Calls 1

AggregateFunctionClass · 0.50

Tested by

no test coverage detected