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

Method udaf

datafusion/expr/src/registry.rs:229–234  ·  view source on GitHub ↗
(&self, name: &str)

Source from the content-addressed store, hash-verified

227 }
228
229 fn udaf(&self, name: &str) -> Result<Arc<AggregateUDF>> {
230 self.udafs
231 .get(name)
232 .cloned()
233 .ok_or_else(|| plan_datafusion_err!("Aggregate Function {name} not found"))
234 }
235
236 fn udwf(&self, name: &str) -> Result<Arc<WindowUDF>> {
237 self.udwfs

Callers 6

parse_exprFunction · 0.45
from_substrait_agg_funcFunction · 0.45
from_window_functionFunction · 0.45
rewriteMethod · 0.45

Calls 2

clonedMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected