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

Method depends_on

src/expr/src/relation.rs:81–85  ·  view source on GitHub ↗

Returns the set of global identifiers from dataflows referenced in Get. See [`CollectionPlan::depends_on_into`] to reuse an existing `BTreeSet`.

(&self)

Source from the content-addressed store, hash-verified

79 ///
80 /// See [`CollectionPlan::depends_on_into`] to reuse an existing `BTreeSet`.
81 fn depends_on(&self) -> BTreeSet<GlobalId> {
82 let mut out = BTreeSet::new();
83 self.depends_on_into(&mut out);
84 out
85 }
86}
87
88/// An abstract syntax tree which defines a collection.

Callers

nothing calls this directly

Implementers 5

plan.rssrc/compute-types/src/plan.rs
render_plan.rssrc/compute-types/src/plan/render_plan
relation.rssrc/expr/src/relation.rs
lib.rssrc/expr/src/lib.rs
hir.rssrc/sql/src/plan/hir.rs

Calls 1

depends_on_intoMethod · 0.45

Tested by

no test coverage detected