summaryrefslogtreecommitdiff
path: root/src/mongo/db/mongod_main.cpp
diff options
context:
space:
mode:
authorKevin Cherkauer <kevin.cherkauer@mongodb.com>2022-12-22 20:08:43 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-19 03:13:34 +0000
commit210f9cbb2a8759db1d9161ee21cf3b596d02d028 (patch)
treea672761e5f95c340af8fd93b74d3644e3622185f /src/mongo/db/mongod_main.cpp
parenta2dc5577e42ef8ce6734f4f9a6a46e6972ae873b (diff)
downloadmongo-210f9cbb2a8759db1d9161ee21cf3b596d02d028.tar.gz
SERVER-67446 Ensure consistent wildcardProjection specs in catalog
Diffstat (limited to 'src/mongo/db/mongod_main.cpp')
-rw-r--r--src/mongo/db/mongod_main.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/db/mongod_main.cpp b/src/mongo/db/mongod_main.cpp
index 3c5cf6f2933..cfc74bda427 100644
--- a/src/mongo/db/mongod_main.cpp
+++ b/src/mongo/db/mongod_main.cpp
@@ -83,7 +83,6 @@
#include "mongo/db/ftdc/ftdc_mongod.h"
#include "mongo/db/ftdc/util.h"
#include "mongo/db/global_settings.h"
-#include "mongo/db/index/index_access_method_factory_impl.h"
#include "mongo/db/index_builds_coordinator_mongod.h"
#include "mongo/db/index_names.h"
#include "mongo/db/initialize_server_global_state.h"
@@ -1117,7 +1116,6 @@ void setUpCollectionShardingState(ServiceContext* serviceContext) {
void setUpCatalog(ServiceContext* serviceContext) {
DatabaseHolder::set(serviceContext, std::make_unique<DatabaseHolderImpl>());
- IndexAccessMethodFactory::set(serviceContext, std::make_unique<IndexAccessMethodFactoryImpl>());
Collection::Factory::set(serviceContext, std::make_unique<CollectionImpl::FactoryImpl>());
}