summaryrefslogtreecommitdiff
path: root/jstests/core/update3.js
blob: 4974f8c022b2c590ef0500a282a8a499d05d7ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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]

// Update with mods corner cases.

f = db.jstests_update3;

f.drop();
f.save({a: 1});
f.update({}, {$inc: {a: 1}});
assert.eq(2, f.findOne().a, "A");

f.drop();
f.save({a: {b: 1}});
f.update({}, {$inc: {"a.b": 1}});
assert.eq(2, f.findOne().a.b, "B");

f.drop();
f.save({a: {b: 1}});
f.update({}, {$set: {"a.b": 5}});
assert.eq(5, f.findOne().a.b, "C");

f.drop();
f.save({'_id': 0});
f.update({}, {$set: {'_id': 5}});
assert.eq(0, f.findOne()._id, "D");

f.drop();
f.save({_id: 1, a: 1});
f.update({}, {$unset: {"a": 1, "b.c": 1}});
assert.docEq(f.findOne(), {_id: 1}, "E");