pub fn nlike_binary_scalar<O: Offset>(
lhs: &BinaryArray<O>,
rhs: &[u8]
) -> 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