Function ilike
Source pub fn ilike(
left: &dyn Datum,
right: &dyn Datum,
) -> Result<BooleanArray, ArrowError>
Expand description
Perform SQL left ILIKE right
§Notes
- This is a case-insensitive version of
like
- See the documentation on
like
for more details
- Implements loose matching as defined by the Unicode standard. For example,
the
ff
ligature is not equivalent to FF
and ß
is not equivalent to SS