0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/set1.js

10 lines
166 B
JavaScript
Raw Normal View History

2009-08-26 06:16:16 +02:00
t = db.set1;
t.drop();
t.insert( { _id : 1, emb : {} });
t.update( { _id : 1 }, { $set : { emb : { 'a.dot' : 'data'} }});
2010-01-15 05:56:51 +01:00
printjson( t.findOne() ); // SERVER-261
2009-08-26 06:16:16 +02:00