| 41 | } |
| 42 | |
| 43 | static UUID parseUUID(const String & text) |
| 44 | { |
| 45 | UUID uuid = UUIDHelpers::Nil; |
| 46 | auto buffer = ReadBufferFromMemory(text.data(), text.length()); |
| 47 | readUUIDText(uuid, buffer); |
| 48 | return uuid; |
| 49 | } |
| 50 | |
| 51 | static String formatEntityNameWithType(AccessEntityType type, const String & name) |
| 52 | { |
no test coverage detected