summaryrefslogtreecommitdiff
path: root/jstests/core/update_invalid1.js
blob: 3fd96d61f3818f3ddba851b24ca76a3dd9af1d2c (plain)
1
2
3
4
5
6

t = db.update_invalid1;
t.drop();

t.update({_id: 5}, {$set: {$inc: {x: 5}}}, true);
assert.eq(0, t.count(), "A1");