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

Method like

datafusion/expr/src/expr.rs:1732–1740  ·  view source on GitHub ↗

Return `self LIKE other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1730
1731 /// Return `self LIKE other`
1732 pub fn like(self, other: Expr) -> Expr {
1733 Expr::Like(Like::new(
1734 false,
1735 Box::new(self),
1736 Box::new(other),
1737 None,
1738 false,
1739 ))
1740 }
1741
1742 /// Return `self NOT LIKE other`
1743 pub fn not_like(self, other: Expr) -> Expr {

Calls 2

LikeClass · 0.85
newFunction · 0.85