1//! This module defines a FunctionRegistry for supported SQL functions and UDFs.
23use polars_error::{PolarsResult, polars_bail};
4use polars_plan::prelude::udf::UserDefinedFunction;
5pub use polars_plan::prelude::{Context, FunctionOptions};
6/// A registry that holds user defined functions.
7pub trait FunctionRegistry: Send + Sync {
8/// Register a function.
9fn register(&mut self, name: &str, fun: UserDefinedFunction) -> PolarsResult<()>;
10/// Call a user defined function.
11fn get_udf(&self, name: &str) -> PolarsResult<Option<UserDefinedFunction>>;
12/// Check if a function is registered.
13fn contains(&self, name: &str) -> bool;
14}
1516/// A default registry that does not support registering or calling functions.
17pub struct DefaultFunctionRegistry {}
1819impl FunctionRegistry for DefaultFunctionRegistry {
20fn register(&mut self, _name: &str, _fun: UserDefinedFunction) -> PolarsResult<()> {
21polars_bail!(ComputeError: "'register' not implemented on DefaultFunctionRegistry'")
22 }
2324fn get_udf(&self, _name: &str) -> PolarsResult<Option<UserDefinedFunction>> {
25polars_bail!(ComputeError: "'get_udf' not implemented on DefaultFunctionRegistry'")
26 }
27fn contains(&self, _name: &str) -> bool {
28false
29}
30}