summaryrefslogtreecommitdiff
path: root/jstests/core/updateg.js
blob: 8a849a0ce593930248c05e056f4e77147d205bf9 (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]

// SERVER-3370 check modifiers with field name characters comparing less than '.' character.

t = db.jstests_updateg;

t.drop();
t.update({}, {'$inc': {'all.t': 1, 'all-copy.t': 1}}, true);
assert.eq(1, t.count({all: {t: 1}, 'all-copy': {t: 1}}));

t.drop();
t.save({'all': {}, 'all-copy': {}});
t.update({}, {'$inc': {'all.t': 1, 'all-copy.t': 1}});
assert.eq(1, t.count({all: {t: 1}, 'all-copy': {t: 1}}));

t.drop();
t.save({'all11': {}, 'all2': {}});
t.update({}, {'$inc': {'all11.t': 1, 'all2.t': 1}});
assert.eq(1, t.count({all11: {t: 1}, 'all2': {t: 1}}));