pub fn like(
array: Array,
pattern: &Array,
options: LikeOptions,
) -> VortexResult<Array>
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