From 9813adfb617761dc9d37a841138754ab3177fffd Mon Sep 17 00:00:00 2001 From: Louis Williams Date: Tue, 6 Apr 2021 09:18:10 -0400 Subject: SERVER-55559 StorageInterfaceImpl should use bounded collection scans on clustered collections --- src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_kv_engine.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mongo/db/storage') diff --git a/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_kv_engine.cpp b/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_kv_engine.cpp index 9fb3be20719..bf7f2e5a943 100644 --- a/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_kv_engine.cpp +++ b/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_kv_engine.cpp @@ -70,6 +70,7 @@ Status KVEngine::createRecordStore(OperationContext* opCtx, StringData ns, StringData ident, const CollectionOptions& options) { + uassert(5555900, "The 'clusteredIndex' option is not supported", !options.clusteredIndex); stdx::lock_guard lock(_identsLock); _idents[ident.toString()] = true; return Status::OK(); -- cgit v1.2.1