Details
-
Bug
-
Status: Closed
-
Major - P3
-
Resolution: Works as Designed
-
2.8.0-rc0
-
None
-
None
-
OS X
Description
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" |
}
|
Attachments
Issue Links
- related to
-
SERVER-14710 Remove dropDups support from index building
-
- Closed
-
-
SERVER-14812 Add a flag to drop unique violators in repair
-
- Closed
-