summaryrefslogtreecommitdiff
path: root/jstests/core/find_and_modify_server6659.js
blob: 029a32d6a4988567568a410fad3ba8a282bc61ab (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.find_and_modify_server6659;
t.drop();

x = t.findAndModify({query: {f: 1}, update: {$set: {f: 2}}, upsert: true, new: true});
assert.eq(2, x.f);
assert.eq(2, t.findOne().f);