summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-10857 Remove erroneous IndexName::TEXT_INTERNALJason Rassi2013-12-041-2/+2
|
* SERVER-11790: recover from yields and handle runner error states in updatesScott Hernandez2013-12-042-1/+7
|
* SERVER-11812 Disallow indexes on "" and paths with "$**" componentJason Rassi2013-12-021-4/+10
|
* SERVER-11178: Adjust two log levels in new catalog codeDan Pasette2013-11-171-1/+1
|
* SERVER-11374: fixing text index compatibilityAmalia Hawkins2013-11-121-2/+7
|
* SERVER-11374: Disallow creation of indexes on non-insertable fieldsAmalia Hawkins2013-11-111-0/+39
| | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* SERVER-8432: clean up error handling on index build failureEliot Horowitz2013-11-051-16/+5
|
* remove old commentEliot Horowitz2013-11-051-2/+0
|
* move catalog on disk representation to catalog/ondiskEliot Horowitz2013-11-056-0/+533
|
* SERVER-11178: index building now all with IndexCatalog, CatalogHack out of ↵Eliot Horowitz2013-11-024-46/+86
| | | | all new paths
* SERVER-11178: IndexScan now uses IndexCatalog classesEliot Horowitz2013-11-022-0/+38
|
* SERVER-11178: IndexLegacy partly to IndexCatalogEliot Horowitz2013-11-021-2/+2
|
* SERVER-11440 changed auditLogging of dropIndex to show indexName rather than ↵matt dannenberg2013-10-291-1/+1
| | | | indexNamespace
* SERVER-11178: remove more CatalogHack uses for IndexCatalogEliot Horowitz2013-10-292-2/+20
|
* SERVER-11178: simplify and correct cache when background index finishesEliot Horowitz2013-10-281-11/+3
|
* SERVER-11178: prep to make IndexDetails hidden behind IndexCatalog and ↵Eliot Horowitz2013-10-282-0/+27
| | | | IndexDescriptor
* SERVER-11178: fix caching of IndexDescriptors with dropEliot Horowitz2013-10-282-22/+43
|
* SERVER-11178: fix drop_dups with index create by putting back logOp after ↵Eliot Horowitz2013-10-261-1/+5
| | | | changing delete path
* SERVER-11178: remove impossible to reach codeEliot Horowitz2013-10-261-4/+0
|
* SERVER-11178: remove unused variable from old index_updateEliot Horowitz2013-10-251-2/+0
|
* SERVER-11294: create extent by default line we did in 2.4Eliot Horowitz2013-10-251-1/+1
|
* SERVER-11178: refactor index_create to not use CataloghackEliot Horowitz2013-10-253-139/+149
|
* SERVER-11178: rename index_update. to catalog/index_create.Eliot Horowitz2013-10-253-1/+305
|
* SERVER-11178: move ensureHaveIdIndex from bare to inside IndexCatalogEliot Horowitz2013-10-252-2/+33
|
* SERVER-11178: remove prepareToBuildIndex, and have pdfile call into ↵Eliot Horowitz2013-10-251-2/+10
| | | | IndexCatalog for creating indexes
* SERVER-11178: move _id key fixing into IndexCatalogEliot Horowitz2013-10-252-3/+41
|
* SERVER-11178: moving all index creation logic into IndexCatalogEliot Horowitz2013-10-252-2/+57
|
* SERVER-11178: first cut at IndexCatalog::createIndexEliot Horowitz2013-10-251-0/+62
|
* SERVER-11178: fix index rebuilding after crashEliot Horowitz2013-10-231-1/+1
|
* SERVER-11178: Introduce IndexCatalog and requirementsEliot Horowitz2013-10-232-0/+937
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