MCPcopy Create free account
hub / github.com/apache/arrow-rs / nilike

Function nilike

arrow-string/src/like.rs:112–114  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

110/// - This is a negative of [`like`]
111/// - See the documentation on [`ilike`] for more details
112pub 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///

Callers 1

bench_nilike_utf8_scalarFunction · 0.85

Calls 1

like_opFunction · 0.85

Tested by

no test coverage detected