Trait datafusion::api::ScalarFunction
[−]
[src]
pub trait ScalarFunction { fn execute(&self, args: Vec<Value>) -> Result<Value, Box<String>>; }
All scalar functions must implement this trait ... hopefully we can load impls at runtime
Required Methods
Implementors
impl ScalarFunction for SqrtFunction