pub trait ExprSimplifiable {
    fn simplify<S>(self, info: &S) -> Result<Self, DataFusionError>
    where
        S: SimplifyInfo
; }
Expand description

trait for types that can be simplified

Required Methods

simplify this trait object using the given SimplifyInfo

Implementors