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

Function getForeignPropertyInfos

src/function/table/table_info.cpp:122–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122static 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
132static std::vector<PropertyInfo> getNodePropertyInfos(NodeTableCatalogEntry* entry) {
133 std::vector<PropertyInfo> infos;

Callers 1

bindFuncFunction · 0.85

Calls 5

getInfoFunction · 0.85
getPropertiesMethod · 0.45
getPropertyIDMethod · 0.45
getNameMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected