| 139 | } |
| 140 | |
| 141 | void OverflowFileHandle::checkpoint() { |
| 142 | for (auto& [pageIndex, page] : pageWriteCache) { |
| 143 | overflowFile.writePageToDisk(pageIndex, page.buffer->getData(), page.newPage); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | void OverflowFileHandle::reclaimStorage(PageAllocator& pageAllocator) { |
| 148 | if (startPageIdx == INVALID_PAGE_IDX) { |
nothing calls this directly
no test coverage detected