mirror of https://github.com/mongodb/mongo
22 lines
531 B
JavaScript
22 lines
531 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]
|
|
|
|
t = db.set5;
|
|
t.drop();
|
|
|
|
function check(want, err) {
|
|
var x = t.findOne();
|
|
delete x._id;
|
|
assert.docEq(want, x, err);
|
|
}
|
|
|
|
t.update({a: 5}, {$set: {a: 6, b: null}}, true);
|
|
check({a: 6, b: null}, "A");
|
|
|
|
t.drop();
|
|
|
|
t.update({z: 5}, {$set: {z: 6, b: null}}, true);
|
|
check({b: null, z: 6}, "B");
|