| 25 | } |
| 26 | |
| 27 | void 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 | |
| 36 | void NodeOrRelExpression::addPropertyExpression(std::shared_ptr<PropertyExpression> property) { |
| 37 | auto propertyName = property->getPropertyName(); |
no test coverage detected