pub trait VarProvider: Debug {
    // Required methods
    fn get_value(
        &self,
        var_names: Vec<String, Global>
    ) -> Result<ScalarValue, DataFusionError>;
    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, Global> ) -> Result<ScalarValue, DataFusionError>

Get variable value

source

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

Return the type of the given variable

Implementors§