summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_engine.h')
-rw-r--r--src/mongo/db/storage/kv/kv_engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine.h b/src/mongo/db/storage/kv/kv_engine.h
index 04c5acb1dfa..f76ef68bb0e 100644
--- a/src/mongo/db/storage/kv/kv_engine.h
+++ b/src/mongo/db/storage/kv/kv_engine.h
@@ -91,14 +91,14 @@ public:
virtual Status dropIdent(OperationContext* opCtx, StringData ident) = 0;
// optional
- virtual int flushAllFiles(OperationContext* txn, bool sync) {
+ virtual int flushAllFiles(OperationContext* opCtx, bool sync) {
return 0;
}
/**
* See StorageEngine::beginBackup for details
*/
- virtual Status beginBackup(OperationContext* txn) {
+ virtual Status beginBackup(OperationContext* opCtx) {
return Status(ErrorCodes::CommandNotSupported,
"The current storage engine doesn't support backup mode");
}
@@ -106,7 +106,7 @@ public:
/**
* See StorageEngine::endBackup for details
*/
- virtual void endBackup(OperationContext* txn) {
+ virtual void endBackup(OperationContext* opCtx) {
MONGO_UNREACHABLE;
}