pub fn nlike_binary<O: Offset>(
    lhs: &BinaryArray<O>,
    rhs: &BinaryArray<O>
) -> Result<BooleanArray>
Available on crate feature compute_like only.
Expand description

Returns lhs NOT LIKE rhs operation on two BinaryArrays.

There are two wildcards supported:

  • % - The percent sign represents zero, one, or multiple characters
  • _ - The underscore represents a single character