MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / equals

Method equals

src/sql-parser/src/ast/defs/expr.rs:1014–1016  ·  view source on GitHub ↗
(self, right: Expr<T>)

Source from the content-addressed store, hash-verified

1012 }
1013
1014 pub fn equals(self, right: Expr<T>) -> Expr<T> {
1015 self.binop(Op::bare("="), right)
1016 }
1017
1018 pub fn not_equals(self, right: Expr<T>) -> Expr<T> {
1019 self.binop(Op::bare("<>"), right)

Callers 5

plan_bool_andMethod · 0.80
plan_expr_innerFunction · 0.80
plan_in_listFunction · 0.80
plan_caseFunction · 0.80

Calls 1

binopMethod · 0.80

Tested by

no test coverage detected