datafusion_expr::var_provider

Trait VarProvider

Source
pub trait VarProvider: Debug {
    // Required methods
    fn get_value(&self, var_names: Vec<String>) -> Result<ScalarValue>;
    fn get_type(&self, var_names: &[String]) -> Option<DataType>;
}
Expand description

A var provider for @variable and @@variable runtime values.

Required Methods§

Source

fn get_value(&self, var_names: Vec<String>) -> Result<ScalarValue>

Get variable value

Source

fn get_type(&self, var_names: &[String]) -> Option<DataType>

Return the type of the given variable

Implementors§