Returns the set of global identifiers from dataflows referenced in Get. See [`CollectionPlan::depends_on_into`] to reuse an existing `BTreeSet`.
(&self)
| 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. |
nothing calls this directly
no test coverage detected