MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / addEntries

Method addEntries

src/binder/expression/node_rel_expression.cpp:27–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void NodeOrRelExpression::addEntries(const std::vector<TableCatalogEntry*>& entries_) {
28 auto tableIDsSet = getTableIDsSet();
29 for (auto& entry : entries_) {
30 if (!tableIDsSet.contains(entry->getTableID())) {
31 entries.push_back(entry);
32 }
33 }
34}
35
36void NodeOrRelExpression::addPropertyExpression(std::shared_ptr<PropertyExpression> property) {
37 auto propertyName = property->getPropertyName();

Callers 1

bindQueryNodeMethod · 0.80

Calls 2

containsMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected