Trait datafusion_expr::simplify::SimplifyInfo
source · pub trait SimplifyInfo {
// Required methods
fn is_boolean_type(&self, expr: &Expr) -> Result<bool>;
fn nullable(&self, expr: &Expr) -> Result<bool>;
fn execution_props(&self) -> &ExecutionProps;
fn get_data_type(&self, expr: &Expr) -> Result<DataType>;
}
Expand description
Provides the information necessary to apply algebraic simplification to an Expr. See SimplifyContext for one concrete implementation.
This trait exists so that other systems can plug schema
information in without having to create DFSchema
objects. If you
have a DFSchemaRef
you can use SimplifyContext
Required Methods§
sourcefn is_boolean_type(&self, expr: &Expr) -> Result<bool>
fn is_boolean_type(&self, expr: &Expr) -> Result<bool>
returns true if this Expr has boolean type
sourcefn nullable(&self, expr: &Expr) -> Result<bool>
fn nullable(&self, expr: &Expr) -> Result<bool>
returns true of this expr is nullable (could possibly be NULL)
sourcefn execution_props(&self) -> &ExecutionProps
fn execution_props(&self) -> &ExecutionProps
Returns details needed for partial expression evaluation
sourcefn get_data_type(&self, expr: &Expr) -> Result<DataType>
fn get_data_type(&self, expr: &Expr) -> Result<DataType>
Returns data type of this expr needed for determining optimized int type of a value