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

Method higher_order_function

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

Source from the content-addressed store, hash-verified

220 }
221
222 fn higher_order_function(&self, name: &str) -> Result<Arc<HigherOrderUDF>> {
223 self.higher_order_functions
224 .get(name)
225 .cloned()
226 .ok_or_else(|| plan_datafusion_err!("Higher Order Function {name} not found"))
227 }
228
229 fn udaf(&self, name: &str) -> Result<Arc<AggregateUDF>> {
230 self.udafs

Callers

nothing calls this directly

Calls 2

clonedMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected