diff options
author | Benety Goh <benety@mongodb.com> | 2018-12-10 14:14:27 -0500 |
---|---|---|
committer | Benety Goh <benety@mongodb.com> | 2018-12-10 14:14:48 -0500 |
commit | ba216692a2c1779dcf631f1e676ec9297aaf22e2 (patch) | |
tree | 600b56a6d79b13ab4c507c604a81e4e158823fc1 /src/mongo/db/index_builder.cpp | |
parent | 1bef15e88938c69a96903a92ac20a4416e559a73 (diff) | |
download | mongo-ba216692a2c1779dcf631f1e676ec9297aaf22e2.tar.gz |
SERVER-38330 merge MultiIndexBlock and MultiIndexBlockImpl
Diffstat (limited to 'src/mongo/db/index_builder.cpp')
-rw-r--r-- | src/mongo/db/index_builder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/index_builder.cpp b/src/mongo/db/index_builder.cpp index 3335b0a421d..5861f08ffe6 100644 --- a/src/mongo/db/index_builder.cpp +++ b/src/mongo/db/index_builder.cpp @@ -38,7 +38,7 @@ #include "mongo/db/auth/authorization_session.h" #include "mongo/db/catalog/database.h" #include "mongo/db/catalog/database_holder.h" -#include "mongo/db/catalog/multi_index_block_impl.h" +#include "mongo/db/catalog/multi_index_block.h" #include "mongo/db/client.h" #include "mongo/db/concurrency/write_conflict_exception.h" #include "mongo/db/curop.h" @@ -236,7 +236,7 @@ Status IndexBuilder::_build(OperationContext* opCtx, curOp->setOpDescription_inlock(opDescObj); } - MultiIndexBlockImpl indexer(opCtx, coll); + MultiIndexBlock indexer(opCtx, coll); indexer.allowInterruption(); if (allowBackgroundBuilding) indexer.allowBackgroundBuilding(); |