summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-01-24 14:35:42 +0000
committerevergreen <evergreen@mongodb.com>2020-01-24 14:35:42 +0000
commit5f27f0519f980f3099764b8045e887b633d60b72 (patch)
treee8f3e5571207109ecea3bed61153a33f1bf8db98 /src/mongo/db/storage/kv
parente791a2ea966bb302ff180dd4538d87c078e74747 (diff)
downloadmongo-5f27f0519f980f3099764b8045e887b633d60b72.tar.gz
SERVER-45481 Change the backup API to return the blocks to copy for incremental backup
Diffstat (limited to 'src/mongo/db/storage/kv')
-rw-r--r--src/mongo/db/storage/kv/kv_engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine.h b/src/mongo/db/storage/kv/kv_engine.h
index 337a40d13b9..7c3316cb6a5 100644
--- a/src/mongo/db/storage/kv/kv_engine.h
+++ b/src/mongo/db/storage/kv/kv_engine.h
@@ -237,7 +237,7 @@ public:
MONGO_UNREACHABLE;
}
- virtual StatusWith<std::vector<StorageEngine::BackupBlock>> beginNonBlockingBackup(
+ virtual StatusWith<StorageEngine::BackupInformation> beginNonBlockingBackup(
OperationContext* opCtx, const StorageEngine::BackupOptions& options) {
return Status(ErrorCodes::CommandNotSupported,
"The current storage engine doesn't support backup mode");