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

Function min

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

Source from the content-addressed store, hash-verified

283create_func!(Min, min_udaf);
284
285pub fn min(expr: Expr) -> Expr {
286 Expr::AggregateFunction(AggregateFunction::new_udf(
287 min_udaf(),
288 vec![expr],
289 false,
290 None,
291 vec![],
292 None,
293 ))
294}
295
296/// Testing stub implementation of Min aggregate
297#[derive(PartialEq, Eq, Hash)]

Calls 1

AggregateFunctionClass · 0.50

Tested by

no test coverage detected