Files
mongo/jstests/core/set4.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

16 lines
353 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" );