summaryrefslogtreecommitdiff
path: root/jstests/core/find_and_modify_server6582.js
blob: 7ad8aebee760d3bb41859e259993ca6a4568139f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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_server6582;

t.drop();
x = t.runCommand("findAndModify", {query: {f: 1}, update: {$set: {f: 2}}, upsert: true, new: true});
le = x.lastErrorObject;
assert.eq(le.updatedExisting, false);
assert.eq(le.n, 1);
assert.eq(le.upserted, x.value._id);

t.drop();
t.insert({f: 1});
x = t.runCommand("findAndModify", {query: {f: 1}, remove: true});
le = x.lastErrorObject;
assert.eq(le.n, 1);