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
VarProvider in datafusion::physical_expr::execution_props - Rust
[go: Go Back, main page]

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

Get variable value

source

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

Return the type of the given variable

Implementors§