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

Function getPropertyNames

src/function/table/show_indexes.cpp:54–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53template<typename ID_TYPE>
54static std::vector<std::string> getPropertyNames(const TableCatalogEntry& tableEntry,
55 const std::vector<ID_TYPE>& propertyIDs) {
56 std::vector<std::string> propertyNames;
57 propertyNames.reserve(propertyIDs.size());
58 for (auto propertyID : propertyIDs) {
59 propertyNames.push_back(tableEntry.getProperty(propertyID).getName());
60 }
61 return propertyNames;
62}
63
64static offset_t internalTableFunc(const TableFuncMorsel& morsel, const TableFuncInput& input,
65 DataChunk& output) {

Callers 1

bindFuncFunction · 0.70

Calls 4

reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45
getNameMethod · 0.45

Tested by

no test coverage detected