Files
mongo/jstests/core/set4.js
2016-03-09 12:18:14 -05:00

22 lines
332 B
JavaScript

t = db.set4;
t.drop();
orig = {
_id: 1,
a: [{x: 1}]
};
t.insert(orig);
t.update({}, {$set: {'a.0.x': 2, 'foo.bar': 3}});
orig.a[0].x = 2;
orig.foo = {
bar: 3
};
assert.eq(orig, t.findOne(), "A");
t.update({}, {$set: {'a.0.x': 4, 'foo.bar': 5}});
orig.a[0].x = 4;
orig.foo.bar = 5;
assert.eq(orig, t.findOne(), "B");