| 217 | } |
| 218 | |
| 219 | UUID DatabaseOverlay::getUUID() const |
| 220 | { |
| 221 | UUID result = UUIDHelpers::Nil; |
| 222 | for (const auto & db : databases) |
| 223 | { |
| 224 | result = db->getUUID(); |
| 225 | if (result != UUIDHelpers::Nil) |
| 226 | break; |
| 227 | } |
| 228 | return result; |
| 229 | } |
| 230 | |
| 231 | UUID DatabaseOverlay::tryGetTableUUID(const String & table_name) const |
| 232 | { |
no outgoing calls
no test coverage detected