summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/storage_interface_mock.h
diff options
context:
space:
mode:
authorJudah Schvimer <judah@mongodb.com>2018-02-02 10:27:21 -0500
committerJudah Schvimer <judah@mongodb.com>2018-02-02 10:46:16 -0500
commitb2a7398e663ef090a651a93bedfc6d107a64cf33 (patch)
tree478c4e1c7e5bd5d6ebeb36c2ed50f9ac4a120d41 /src/mongo/db/repl/storage_interface_mock.h
parent488709dde37d13d42321b5ad8989331960602b53 (diff)
downloadmongo-b2a7398e663ef090a651a93bedfc6d107a64cf33.tar.gz
SERVER-32206 timestamp catalog change to declare index multikey
Diffstat (limited to 'src/mongo/db/repl/storage_interface_mock.h')
-rw-r--r--src/mongo/db/repl/storage_interface_mock.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mongo/db/repl/storage_interface_mock.h b/src/mongo/db/repl/storage_interface_mock.h
index a3c9735220d..3eff258e2c7 100644
--- a/src/mongo/db/repl/storage_interface_mock.h
+++ b/src/mongo/db/repl/storage_interface_mock.h
@@ -189,6 +189,15 @@ public:
return Status{ErrorCodes::IllegalOperation, "renameCollection not implemented."};
}
+ Status setIndexIsMultikey(OperationContext* opCtx,
+ const NamespaceString& nss,
+ const std::string& indexName,
+ const MultikeyPaths& paths,
+ Timestamp ts) override {
+
+ return Status{ErrorCodes::IllegalOperation, "setIndexIsMultikey not implemented."};
+ }
+
StatusWith<std::vector<BSONObj>> findDocuments(OperationContext* opCtx,
const NamespaceString& nss,
boost::optional<StringData> indexName,