0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/update_multi6.js
2011-01-11 23:01:17 -05:00

11 lines
275 B
JavaScript

t = db.update_multi6
t.drop();
t.update( { _id : 1 } , { _id : 1 , x : 1 , y : 2 } , true , false );
assert( t.findOne( { _id : 1 } ) , "A" )
t.update( { _id : 2 } , { _id : 2 , x : 1 , y : 2 } , true , true );
assert( db.getLastError() , "B: " + db.getLastErrorCmd() );