summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/create_indexes.cpp
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2018-12-10 14:14:27 -0500
committerBenety Goh <benety@mongodb.com>2018-12-10 14:14:48 -0500
commitba216692a2c1779dcf631f1e676ec9297aaf22e2 (patch)
tree600b56a6d79b13ab4c507c604a81e4e158823fc1 /src/mongo/db/commands/create_indexes.cpp
parent1bef15e88938c69a96903a92ac20a4416e559a73 (diff)
downloadmongo-ba216692a2c1779dcf631f1e676ec9297aaf22e2.tar.gz
SERVER-38330 merge MultiIndexBlock and MultiIndexBlockImpl
Diffstat (limited to 'src/mongo/db/commands/create_indexes.cpp')
-rw-r--r--src/mongo/db/commands/create_indexes.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/commands/create_indexes.cpp b/src/mongo/db/commands/create_indexes.cpp
index ea461d2a5c3..9dcf9ebd467 100644
--- a/src/mongo/db/commands/create_indexes.cpp
+++ b/src/mongo/db/commands/create_indexes.cpp
@@ -42,7 +42,6 @@
#include "mongo/db/catalog/database_holder.h"
#include "mongo/db/catalog/index_key_validate.h"
#include "mongo/db/catalog/multi_index_block.h"
-#include "mongo/db/catalog/multi_index_block_impl.h"
#include "mongo/db/client.h"
#include "mongo/db/command_generic_argument.h"
#include "mongo/db/commands.h"
@@ -360,7 +359,7 @@ public:
dbProfilingLevel);
- MultiIndexBlockImpl indexer(opCtx, collection);
+ MultiIndexBlock indexer(opCtx, collection);
indexer.allowBackgroundBuilding();
indexer.allowInterruption();