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`
(left: &dyn Datum, right: &dyn Datum)
| 92 | /// - Implements loose matching as defined by the Unicode standard. For example, |
| 93 | /// the `ff` ligature is not equivalent to `FF` and `ß` is not equivalent to `SS` |
| 94 | pub fn ilike(left: &dyn Datum, right: &dyn Datum) -> Result<BooleanArray, ArrowError> { |
| 95 | like_op(Op::ILike(false), left, right) |
| 96 | } |
| 97 | |
| 98 | /// Perform SQL `left NOT LIKE right` |
| 99 | /// |
no test coverage detected