From b2a7398e663ef090a651a93bedfc6d107a64cf33 Mon Sep 17 00:00:00 2001 From: Judah Schvimer Date: Fri, 2 Feb 2018 10:27:21 -0500 Subject: SERVER-32206 timestamp catalog change to declare index multikey --- src/mongo/db/repl/storage_interface_mock.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/mongo/db/repl/storage_interface_mock.h') 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> findDocuments(OperationContext* opCtx, const NamespaceString& nss, boost::optional indexName, -- cgit v1.2.1