summaryrefslogtreecommitdiff
path: root/jstests/core/update_multi6.js
blob: 57733c37e3807bad38166b855e1dc1b96d9a84e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
var res;

t = db.update_multi6
t.drop();

t.update( { _id : 1 } , { _id : 1 , x : 1 , y : 2 } , true , false );
assert( t.findOne( { _id : 1 } ) , "A" )

res = t.update( { _id : 2 } , { _id : 2 , x : 1 , y : 2 } , true , true );
assert.writeError( res );