| 236 | } |
| 237 | |
| 238 | void BackupManager::closeDelta(thread_db* tdbb) |
| 239 | { |
| 240 | if (diff_file) |
| 241 | { |
| 242 | PIO_flush(tdbb, diff_file); |
| 243 | PIO_close(diff_file); |
| 244 | diff_file = NULL; |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | // Initialize and open difference file for writing |
| 249 | void BackupManager::beginBackup(thread_db* tdbb) |
no test coverage detected