| 66 | } // namespace |
| 67 | |
| 68 | Checkpointer::Checkpointer(main::ClientContext& clientContext) |
| 69 | : clientContext{clientContext}, |
| 70 | isInMemory{main::DBConfig::isDBPathInMemory(clientContext.getDatabasePath())}, |
| 71 | mainStorageManager{clientContext.getDatabase()->getStorageManager()} {} |
| 72 | |
| 73 | Checkpointer::~Checkpointer() = default; |
| 74 |
nothing calls this directly
no test coverage detected