Function datafusion::physical_plan::expressions::like

source ยท
pub fn like(
    negated: bool,
    case_insensitive: bool,
    expr: Arc<dyn PhysicalExpr>,
    pattern: Arc<dyn PhysicalExpr>,
    input_schema: &Schema
) -> Result<Arc<dyn PhysicalExpr>, DataFusionError>
Expand description

Create a like expression, erroring if the argument types are not compatible.