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

Method extend

src/sql/src/names.rs:2384–2388  ·  view source on GitHub ↗
(&mut self, iter: T)

Source from the content-addressed store, hash-verified

2382
2383impl Extend<(CatalogItemId, GlobalId)> for ResolvedIds {
2384 fn extend<T: IntoIterator<Item = (CatalogItemId, GlobalId)>>(&mut self, iter: T) {
2385 for (item_id, global_id) in iter {
2386 self.entries.entry(item_id).or_default().insert(global_id);
2387 }
2388 }
2389}
2390
2391/// A set of IDs references by the `HirRelationExpr` of an object.

Callers 15

render_split_workFunction · 0.45
persist_sourceFunction · 0.45
fetchMethod · 0.45
purify_create_sourceFunction · 0.45
extend_fromMethod · 0.45
from_iterMethod · 0.45
mapMethod · 0.45
filterMethod · 0.45
unionMethod · 0.45
childrenMethod · 0.45
children_mutMethod · 0.45

Calls 2

insertMethod · 0.45
entryMethod · 0.45

Tested by 1

test_concurrencyFunction · 0.36