pub fn like(
    array: &dyn Array,
    pattern: &dyn Array,
    options: LikeOptions,
) -> VortexResult<ArrayRef>Expand description
Perform SQL left LIKE right
There are two wildcards supported with the LIKE operator:
- %: matches zero or more characters
- _: matches exactly one character