Details
-
Bug
-
Resolution: Done
-
Major - P3
-
None
-
None
Description
DOCS-6486 mentions count() supporting a readConcern() helper in the mongo shell:
db.collection.count().readConcern(<level>)
This does not appear to match the implementation, which (as at MongoDB 3.2.0) only supports passing the readConcern to count() as an option, eg:
db.bacon.count({}, {readConcern: "local"})
|