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

Method or

datafusion/expr/src/expr.rs:1727–1729  ·  view source on GitHub ↗

Return `self || other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1725
1726 /// Return `self || other`
1727 pub fn or(self, other: Expr) -> Expr {
1728 binary_expr(self, Operator::Or, other)
1729 }
1730
1731 /// Return `self LIKE other`
1732 pub fn like(self, other: Expr) -> Expr {

Calls 1

binary_exprFunction · 0.70