| 112 | } |
| 113 | |
| 114 | static PropertyInfo getInfo(const binder::PropertyDefinition& def) { |
| 115 | auto info = PropertyInfo(); |
| 116 | info.name = def.getName(); |
| 117 | info.type = def.getType().toString(); |
| 118 | info.defaultVal = def.getDefaultExpressionName(); |
| 119 | return info; |
| 120 | } |
| 121 | |
| 122 | static std::vector<PropertyInfo> getForeignPropertyInfos(TableCatalogEntry* entry) { |
| 123 | std::vector<PropertyInfo> infos; |
no test coverage detected