summaryrefslogtreecommitdiff
path: root/jstests/core/updatec.js
blob: 8ce8cf4ecdd6972e4ad7adee8e5bf8983ac12afd (plain)
1
2
3
4
5
6
7
8

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({"_id": 123, "f": [234, 234], "v": {"i": 123, "a": 456}}, t.findOne());