summaryrefslogtreecommitdiff
path: root/jstests/core/pull_remove1.js
blob: ab9368bab3bbc277f3182ae0d67e913c2609cdfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Cannot implicitly shard accessed collections because of following errmsg: A single
// update/delete on a sharded collection must contain an exact match on _id or contain the shard
// key.
// @tags: [assumes_unsharded_collection]

t = db.pull_remove1;
t.drop();

o = {
    _id: 1,
    a: [1, 2, 3, 4, 5, 6, 7, 8]
};
t.insert(o);

assert.eq(o, t.findOne(), "A1");

o.a = o.a.filter(function(z) {
    return z >= 6;
});
t.update({}, {$pull: {a: {$lt: 6}}});

assert.eq(o.a, t.findOne().a, "A2");