| 29 | } |
| 30 | |
| 31 | void registerDataTypeUUID(DataTypeFactory & factory) |
| 32 | { |
| 33 | factory.registerSimpleDataType("UUID", [] { return DataTypePtr(std::make_shared<DataTypeUUID>()); }); |
| 34 | } |
| 35 | |
| 36 | Field DataTypeUUID::stringToVisitorField(const String & ins) const |
| 37 | { |
no test coverage detected