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

Method call_binary

src/sql/src/plan/hir.rs:3822–3829  ·  view source on GitHub ↗
(self, other: Self, func: B)

Source from the content-addressed store, hash-verified

3820 }
3821
3822 pub fn call_binary<B: Into<BinaryFunc>>(self, other: Self, func: B) -> Self {
3823 HirScalarExpr::CallBinary {
3824 func: func.into(),
3825 expr1: Box::new(self),
3826 expr2: Box::new(other),
3827 name: NameMetadata::default(),
3828 }
3829 }
3830
3831 pub fn call_unmaterializable(func: UnmaterializableFunc) -> Self {
3832 HirScalarExpr::CallUnmaterializable(func, NameMetadata::default())

Callers 6

fromMethod · 0.45
digestFunction · 0.45
plan_using_constraintFunction · 0.45
plan_likeFunction · 0.45
plan_subscript_jsonbFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected