| 325 | } |
| 326 | |
| 327 | void DatabaseOverlay::loadStoredObjects(ContextMutablePtr local_context, LoadingStrictnessLevel mode) |
| 328 | { |
| 329 | for (auto & db : databases) |
| 330 | if (!db->isReadOnly()) |
| 331 | db->loadStoredObjects(local_context, mode); |
| 332 | } |
| 333 | |
| 334 | bool DatabaseOverlay::supportsLoadingInTopologicalOrder() const |
| 335 | { |
no test coverage detected