Struct datafusion::physical_plan::expressions::InListExpr [−][src]
pub struct InListExpr { /* fields omitted */ }
Expand description
InList
Implementations
pub fn new(
expr: Arc<dyn PhysicalExpr>,
list: Vec<Arc<dyn PhysicalExpr>>,
negated: bool
) -> Self
pub fn new(
expr: Arc<dyn PhysicalExpr>,
list: Vec<Arc<dyn PhysicalExpr>>,
negated: bool
) -> Self
Create a new InList expression
Input expression
List to search in
Trait Implementations
Get the data type of this expression, given the schema of the input
Determine whether this expression is nullable, given the schema of the input
Evaluate an expression against a RecordBatch