| 435 | |
| 436 | |
| 437 | void BerkeleyEnvironment::CheckpointLSN(const std::string& strFile) |
| 438 | { |
| 439 | dbenv->txn_checkpoint(0, 0, 0); |
| 440 | if (fMockDb) |
| 441 | return; |
| 442 | dbenv->lsn_reset(strFile.c_str(), 0); |
| 443 | } |
| 444 | |
| 445 | |
| 446 | BerkeleyBatch::BerkeleyBatch(BerkeleyDatabase& database, const char* pszMode, bool fFlushOnCloseIn) : pdb(nullptr), activeTxn(nullptr) |
no outgoing calls
no test coverage detected