Details
-
Bug
-
Resolution: Done
-
Major - P3
-
2.6.0-rc1
-
None
-
Fully Compatible
-
ALL
Description
db.f.drop();
|
db.setProfilingLevel(0);
|
db.f.ensureIndex({x:1});
|
db.system.profile.drop();
|
db.setProfilingLevel(2);
|
db.f.find({x:1});
|
// the execStats here should be included here
|
var retval = db.system.profile.findOne({},{query:1, execStats:1});
|
assert.neq(retval.execStats.$msg, "query not recording (too large)");
|
db.f.find({})
|
db.system.profile.find({},{query:1, execStats:1})
|