summaryrefslogtreecommitdiff
path: root/jstests/core/write/update/updateb.js
blob: 1518e7f3546374b37f8b48eea251b26b8bc456f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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.updateb;
t.drop();

t.update({"x.y": 2}, {$inc: {a: 7}}, true);

correct = {
    a: 7,
    x: {y: 2}
};
got = t.findOne();
delete got._id;
assert.docEq(correct, got, "A");