Function vortex_array::compute::like
source ยท pub fn like(
array: &ArrayData,
pattern: &ArrayData,
options: LikeOptions,
) -> VortexResult<ArrayData>
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