diff options
author | Eliot Horowitz <eliot@10gen.com> | 2013-10-23 07:32:08 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2013-10-23 07:32:08 -0400 |
commit | a942dd1d88c1c6dddb68f85a02f72434c2999f9e (patch) | |
tree | 39f1193e26591cd6cf1c10ba17cd1e1cce64bc7b /src/mongo/db/index_rebuilder.h | |
parent | 483df488c35c0058e5eea1e9af90ecde77d57a29 (diff) | |
download | mongo-a942dd1d88c1c6dddb68f85a02f72434c2999f9e.tar.gz |
SERVER-11178: Introduce IndexCatalog and requirements
IndexCatalog will be the only place to get information about indexes, and modify them
still a lot of work left, but a lot of the logic is now shifted
Diffstat (limited to 'src/mongo/db/index_rebuilder.h')
-rw-r--r-- | src/mongo/db/index_rebuilder.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mongo/db/index_rebuilder.h b/src/mongo/db/index_rebuilder.h index 08f10f7221b..b89c4d7dd75 100644 --- a/src/mongo/db/index_rebuilder.h +++ b/src/mongo/db/index_rebuilder.h @@ -48,15 +48,6 @@ namespace mongo { * builds that need to be retried. If so, calls retryIndexBuild. */ void checkNS(const std::vector<std::string>& nsToCheck); - - /** - * Actually retry an index build on a given namespace. - * @param dbName the name of the database for accessing db.system.indexes - * @param nsd the namespace details of the namespace building the index - * @param index the offset into nsd's index array of the partially-built index - */ - void retryIndexBuild(const std::string& dbName, - NamespaceDetails* nsd ); }; extern IndexRebuilder indexRebuilder; |