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

Function ilike

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

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)

Source from the content-addressed store, hash-verified

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`
94pub 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///

Callers 4

bench_ilike_utf8_scalarFunction · 0.85
add_benchmarkFunction · 0.85
op_scalarFunction · 0.85
op_binaryFunction · 0.85

Calls 1

like_opFunction · 0.85

Tested by

no test coverage detected