Perform SQL `left NOT ILIKE right` # Notes - This is a negative of [`like`] - See the documentation on [`ilike`] for more details
(left: &dyn Datum, right: &dyn Datum)
| 110 | /// - This is a negative of [`like`] |
| 111 | /// - See the documentation on [`ilike`] for more details |
| 112 | pub fn nilike(left: &dyn Datum, right: &dyn Datum) -> Result<BooleanArray, ArrowError> { |
| 113 | like_op(Op::ILike(true), left, right) |
| 114 | } |
| 115 | |
| 116 | /// Perform SQL `STARTSWITH(left, right)` |
| 117 | /// |
no test coverage detected