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

Method negate

src/sql/src/plan/hir.rs:1878–1886  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1876 }
1877
1878 pub fn negate(self) -> Self {
1879 if let HirRelationExpr::Negate { input } = self {
1880 *input
1881 } else {
1882 HirRelationExpr::Negate {
1883 input: Box::new(self),
1884 }
1885 }
1886 }
1887
1888 pub fn distinct(self) -> Self {
1889 if let HirRelationExpr::Distinct { .. } = self {

Callers 10

exceptMethod · 0.45
plan_bool_andMethod · 0.45
applied_toMethod · 0.45
attempt_outer_equijoinFunction · 0.45
plan_set_exprFunction · 0.45
attempt_left_join_magicFunction · 0.45
actionMethod · 0.45
actionMethod · 0.45
actionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected