| 52 | |
| 53 | template<typename ID_TYPE> |
| 54 | static 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 | |
| 64 | static offset_t internalTableFunc(const TableFuncMorsel& morsel, const TableFuncInput& input, |
| 65 | DataChunk& output) { |