blob: 808ae9a099809480b05c0e1301c04b393598883d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Cannot implicitly shard accessed collections because unsupported use of sharded collection
// from db.eval.
// @tags: [assumes_unsharded_collection]
c = db.jstests_js9;
c.drop();
c.save({a: 1});
c.save({a: 2});
assert.eq(2, c.find().length());
assert.eq(2, c.find().count());
assert.eq(2, db.eval(function() {
num = 0;
db.jstests_js9.find().forEach(function(z) {
num++;
});
return num;
}));
|