vortex_array::compute

Function 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