summaryrefslogtreecommitdiff
path: root/jstests/update_invalid1.js
blob: 7c94507f5603a9ad1816e000c3489e688f94b633 (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" );