summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-01-13 13:42:42 +0000
committerevergreen <evergreen@mongodb.com>2020-01-13 13:42:42 +0000
commited35208e7faeef1856eccf3e724c2838ad4a6dca (patch)
treea7c2d76f7a7105c926cc8048d87751f232f79d24 /src/mongo/db/storage/kv
parent8eff91ffbeb4f346fc5edbb6b5cec96127a1e424 (diff)
downloadmongo-ed35208e7faeef1856eccf3e724c2838ad4a6dca.tar.gz
SERVER-44407 Connect the incremental backup cursor pipes with WT output
Diffstat (limited to 'src/mongo/db/storage/kv')
-rw-r--r--src/mongo/db/storage/kv/kv_engine.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine.h b/src/mongo/db/storage/kv/kv_engine.h
index fa7a095a6ac..62ae81eda27 100644
--- a/src/mongo/db/storage/kv/kv_engine.h
+++ b/src/mongo/db/storage/kv/kv_engine.h
@@ -234,7 +234,10 @@ public:
}
virtual StatusWith<std::vector<StorageEngine::BackupBlock>> beginNonBlockingBackup(
- OperationContext* opCtx) {
+ OperationContext* opCtx,
+ bool incrementalBackup,
+ boost::optional<std::string> thisBackupName,
+ boost::optional<std::string> srcBackupName) {
return Status(ErrorCodes::CommandNotSupported,
"The current storage engine doesn't support backup mode");
}