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

Method get_aggregate_meta

datafusion/sql/src/expr/mod.rs:1422–1427  ·  view source on GitHub ↗
(&self, name: &str)

Source from the content-addressed store, hash-verified

1420 }
1421
1422 fn get_aggregate_meta(&self, name: &str) -> Option<Arc<AggregateUDF>> {
1423 match name {
1424 "sum" => Some(datafusion_functions_aggregate::sum::sum_udaf()),
1425 _ => None,
1426 }
1427 }
1428
1429 fn get_variable_type(&self, _variable_names: &[String]) -> Option<DataType> {
1430 None

Callers 2

sql_function_to_exprMethod · 0.45
find_window_funcMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected