-
Type: Bug
-
Resolution: Done
-
Priority: Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Shell
-
None
-
ALL
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_" } >
- is related to
-
SERVER-8237 autoIndexId:false should be disabled
- Closed
-
SERVER-3176 autoIndexId not honored in mongo shell's createCollection command
- Closed