Files
mongo/jstests/core/update_multi6.js
Siyuan Zhou 3660343e0b SERVER-12127 migrate js tests to jscore suite when not related to writes
Migrate js tests starting from j-z.
Include SERVER-12920 Update use_power_of_2.js

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-03-03 22:54:10 -05:00

12 lines
256 B
JavaScript

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 );