Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MaterializeInc/materialize
/ minus
Method
minus
src/sql-parser/src/ast/defs/expr.rs:1022–1024 ·
view source on GitHub ↗
(self, right: Expr<T>)
Source
from the content-addressed store, hash-verified
1020
}
1021
1022
pub fn minus(self, right: Expr<T>) -> Expr<T> {
1023
self.binop(Op::bare(
"-"
), right)
1024
}
1025
1026
pub fn multiply(self, right: Expr<T>) -> Expr<T> {
1027
self.binop(Op::bare(
"*"
), right)
Callers
1
plan_variance
Method · 0.80
Calls
1
binop
Method · 0.80
Tested by
no test coverage detected