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

Method pushdownable

src/expr/src/interpret.rs:1170–1175  ·  view source on GitHub ↗

We say that an expression is "pushdownable" if it's either constant or dynamic.

(self)

Source from the content-addressed store, hash-verified

1168
1169 /// We say that an expression is "pushdownable" if it's either constant or dynamic.
1170 pub fn pushdownable(self) -> bool {
1171 match self {
1172 TraceSummary::Constant | TraceSummary::Dynamic => true,
1173 TraceSummary::Unknown => false,
1174 }
1175 }
1176}
1177
1178impl Interpreter for Trace {

Callers 1

newMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected