build_like_match

Function build_like_match 

Source
fn build_like_match(
    expr_builder: &mut PruningExpressionBuilder<'_>,
) -> Option<Arc<dyn PhysicalExpr>>
Expand description

Convert column LIKE literal where P is a constant prefix of the literal to a range check on the column: P <= column && column < P', where P’ is the lowest string after all P* strings.