0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
This commit is contained in:
Eliot Horowitz 2010-01-14 23:03:28 -05:00
parent 23ea3a46e1
commit a407720671

15
jstests/set4.js Normal file
View File

@ -0,0 +1,15 @@
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" );