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

12 lines
331 B
JavaScript

t = db.set3;
t.drop();
t.insert( { "test1" : { "test2" : { "abcdefghijklmnopqrstu" : {"id":1} } } } );
t.update( {}, {"$set":{"test1.test2.abcdefghijklmnopqrstuvwxyz":{"id":2}}})
x = t.findOne();
assert.eq( 1 , x.test1.test2.abcdefghijklmnopqrstu.id , "A" );
assert.eq( 2 , x.test1.test2.abcdefghijklmnopqrstuvwxyz.id , "B" );