23 lines
797 B
JavaScript
23 lines
797 B
JavaScript
// 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}}));
|