Details
-
Bug
-
Resolution: Done
-
Minor - P4
-
None
-
None
-
None
-
ALL
Description
The docs here say that autoIndexId is for capped collections: http://docs.mongodb.org/manual/reference/method/db.createCollection/
But I can do it on non capped collections:
> db.createCollection("test", { "autoIndexId" : false})
|
{ "ok" : 1 }
|
> db.system.indexes.find()
|
> db.createCollection("test2")
|
{ "ok" : 1 }
|
> db.system.indexes.find()
|
{ "v" : 1, "key" : { "_id" : 1 }, "ns" : "test.test2", "name" : "_id_" }
|
>
|
Attachments
Issue Links
- is related to
-
SERVER-8237 autoIndexId:false should be disabled
-
- Closed
-
-
SERVER-3176 autoIndexId not honored in mongo shell's createCollection command
-
- Closed
-
- related to
-
DOCS-3521 db.createCollection() page incorrectly lists autoIndexId option as capped-specific
-
- Closed
-