Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
FunctionRegistry in datafusion::execution::registry - Rust
[go: Go Back, main page]

pub trait FunctionRegistry {
    fn udfs(&self) -> HashSet<String>;
    fn udf(&self, name: &str) -> Result<Arc<ScalarUDF>>;
    fn udaf(&self, name: &str) -> Result<Arc<AggregateUDF>>;
}
Expand description

A registry knows how to build logical expressions out of user-defined function’ names

Required Methods

Set of all available udfs.

Returns a reference to the udf named name.

Returns a reference to the udaf named name.

Implementors