| 142 | } |
| 143 | |
| 144 | static std::vector<PropertyInfo> getRelPropertyInfos(RelGroupCatalogEntry* entry) { |
| 145 | std::vector<PropertyInfo> infos; |
| 146 | for (auto& def : entry->getProperties()) { |
| 147 | if (def.getName() == InternalKeyword::ID) { |
| 148 | continue; |
| 149 | } |
| 150 | auto info = getInfo(def); |
| 151 | info.propertyID = entry->getPropertyID(def.getName()); |
| 152 | info.extraInfo = std::make_unique<ExtraRelPropertyInfo>( |
| 153 | ExtendDirectionUtil::toString(entry->getStorageDirection())); |
| 154 | infos.push_back(std::move(info)); |
| 155 | } |
| 156 | return infos; |
| 157 | } |
| 158 | |
| 159 | static std::unique_ptr<TableFuncBindData> bindFunc(const main::ClientContext* context, |
| 160 | const TableFuncBindInput* input) { |
no test coverage detected