-
Type:
Bug
-
Resolution: Done
-
Priority:
Major - P3
-
None
-
Affects Version/s: 2.8.0-rc0
-
Component/s: Index Maintenance
-
None
-
OS X
-
None
-
None
-
None
-
None
-
None
-
None
-
None
When creating an index having dropDupos: true the index is created but when getting index information via getIndexes() the dropDupos information seems to be missing.
db.a.ensureIndex( { a: 1 }, { unique: true, dropDups: true } )
2.6.5
{
"v" : 1,
"unique" : true,
"key" : {
"a" : 1
},
"name" : "a_1",
"ns" : "test.a",
"dropDups" : true
}
2.8.0-rc0
{
"v" : 1,
"unique" : true,
"key" : {
"a" : 1
},
"name" : "a_1",
"ns" : "test.a"
}
- related to
-
SERVER-14710 Remove dropDups support from index building
-
- Closed
-
-
SERVER-14812 Add a flag to drop unique violators in repair
-
- Closed
-