| 124 | } |
| 125 | |
| 126 | UUID DatabaseMemory::tryGetTableUUID(const String & table_name) const |
| 127 | { |
| 128 | if (auto table = tryGetTable(table_name, getContext())) |
| 129 | return table->getStorageID().uuid; |
| 130 | return UUIDHelpers::Nil; |
| 131 | } |
| 132 | |
| 133 | void DatabaseMemory::removeDataPath(ContextPtr) |
| 134 | { |
nothing calls this directly
no test coverage detected