Files
mongo/jstests/core/updatec.js

15 lines
368 B
JavaScript
Raw Normal View History

2010-01-25 23:48:52 -05:00
t = db.updatec;
t.drop();
t.update( { "_id" : 123 }, { $set : { "v" : { "i" : 123, "a":456 } }, $push : { "f" : 234} }, 1, 0 );
t.update( { "_id" : 123 }, { $set : { "v" : { "i" : 123, "a":456 } }, $push : { "f" : 234} }, 1, 0 );
assert.docEq(
2010-01-25 23:48:52 -05:00
{
"_id" : 123,
"f" : [ 234, 234 ] ,
"v" : { "i" : 123, "a" : 456 }
} , t.findOne() );