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
ExprSchema in datafusion_common - Rust
[go: Go Back, main page]

pub trait ExprSchema {
    fn nullable(&self, col: &Column) -> Result<bool>;
    fn data_type(&self, col: &Column) -> Result<&DataType>;
}
Expand description

Provides schema information needed by certain methods of Expr (defined in the datafusion-common crate).

Note that this trait is implemented for &DFSchema which is widely used in the DataFusion codebase.

Required Methods

Is this column reference nullable?

What is the datatype of this column?

Implementors