summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv
diff options
context:
space:
mode:
authorDaniel Gottlieb <daniel.gottlieb@mongodb.com>2019-10-17 17:54:56 +0000
committerevergreen <evergreen@mongodb.com>2019-10-17 17:54:56 +0000
commitcff25ee25c1ad064777c9e8ad58d36857e73035e (patch)
tree92d747bd02514707ccb26ebef28b472132337c60 /src/mongo/db/storage/kv
parentfff3ebaaa26b97674d19234344ea30817ac6dd4e (diff)
downloadmongo-cff25ee25c1ad064777c9e8ad58d36857e73035e.tar.gz
SERVER-43794: Incremental backup cursor API.
Diffstat (limited to 'src/mongo/db/storage/kv')
-rw-r--r--src/mongo/db/storage/kv/kv_engine.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine.h b/src/mongo/db/storage/kv/kv_engine.h
index 2d8118c6f68..8e334d9cee8 100644
--- a/src/mongo/db/storage/kv/kv_engine.h
+++ b/src/mongo/db/storage/kv/kv_engine.h
@@ -225,7 +225,8 @@ public:
MONGO_UNREACHABLE;
}
- virtual StatusWith<std::vector<std::string>> beginNonBlockingBackup(OperationContext* opCtx) {
+ virtual StatusWith<std::vector<StorageEngine::BackupBlock>> beginNonBlockingBackup(
+ OperationContext* opCtx) {
return Status(ErrorCodes::CommandNotSupported,
"The current storage engine doesn't support backup mode");
}