| 120 | } |
| 121 | |
| 122 | static std::vector<PropertyInfo> getForeignPropertyInfos(TableCatalogEntry* entry) { |
| 123 | std::vector<PropertyInfo> infos; |
| 124 | for (auto& def : entry->getProperties()) { |
| 125 | auto info = getInfo(def); |
| 126 | info.propertyID = entry->getPropertyID(def.getName()); |
| 127 | infos.push_back(std::move(info)); |
| 128 | } |
| 129 | return infos; |
| 130 | } |
| 131 | |
| 132 | static std::vector<PropertyInfo> getNodePropertyInfos(NodeTableCatalogEntry* entry) { |
| 133 | std::vector<PropertyInfo> infos; |
no test coverage detected