-
Type: Bug
-
Resolution: Won't Fix
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
ALL
It seems that you can currently insert cursor objects into mongo, which is a regression.
> var x = db.test.find() > db.test.insert(x) SingleWriteResult({ "writeErrors" : [ ], "writeConcernErrors" : [ ], "nInserted" : 1, "nUpserted" : 0, "nUpdated" : 0, "nModified" : 0, "nRemoved" : 0, "upserted" : [ ] })
When using write commands (default, when using shell against new mongod), input validation is going to be deferred to the server and is not yet fully implemented.
- related to
-
SERVER-82524 Complete TODO listed in SERVER-12345
- Blocked
-
SERVER-56551 Complete TODO listed in SERVER-12345
- Closed