MCPcopy Create free account
hub / github.com/apache/datafusion / not_like

Method not_like

datafusion/expr/src/expr.rs:1743–1751  ·  view source on GitHub ↗

Return `self NOT LIKE other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1741
1742 /// Return `self NOT LIKE other`
1743 pub fn not_like(self, other: Expr) -> Expr {
1744 Expr::Like(Like::new(
1745 true,
1746 Box::new(self),
1747 Box::new(other),
1748 None,
1749 false,
1750 ))
1751 }
1752
1753 /// Return `self ILIKE other`
1754 pub fn ilike(self, other: Expr) -> Expr {

Callers 10

test_utf8_not_likeFunction · 0.80
prune_utf8_not_like_oneFunction · 0.80
prune_utf8_not_like_manyFunction · 0.80
simplify_not_not_likeFunction · 0.80
test_simplify_regexFunction · 0.80
test_like_and_ilikeFunction · 0.80

Calls 2

LikeClass · 0.85
newFunction · 0.85

Tested by 10

test_utf8_not_likeFunction · 0.64
prune_utf8_not_like_oneFunction · 0.64
prune_utf8_not_like_manyFunction · 0.64
simplify_not_not_likeFunction · 0.64
test_simplify_regexFunction · 0.64
test_like_and_ilikeFunction · 0.64