| 230 | |
| 231 | |
| 232 | void CDBEnv::CheckpointLSN(const std::string& strFile) |
| 233 | { |
| 234 | dbenv->txn_checkpoint(0, 0, 0); |
| 235 | if (fMockDb) |
| 236 | return; |
| 237 | dbenv->lsn_reset(strFile.c_str(), 0); |
| 238 | } |
| 239 | |
| 240 | |
| 241 | CDB::CDB(const std::string& strFilename, const char* pszMode, bool fFlushOnCloseIn) : pdb(NULL), activeTxn(NULL) |
no outgoing calls
no test coverage detected