| 498 | } |
| 499 | |
| 500 | void CSRNodeGroup::reclaimStorage(PageAllocator& pageAllocator, const UniqLock& lock) const { |
| 501 | NodeGroup::reclaimStorage(pageAllocator, lock); |
| 502 | if (persistentChunkGroup) { |
| 503 | persistentChunkGroup->reclaimStorage(pageAllocator); |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | static std::unique_ptr<ChunkedCSRNodeGroup> createNewPersistentChunkGroup( |
| 508 | ChunkedCSRNodeGroup& oldPersistentChunkGroup, CSRNodeGroupCheckpointState& csrState) { |
no test coverage detected