0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/index6.js
2009-01-31 17:22:22 -05:00

9 lines
233 B
JavaScript

// index6.js Test indexes on array subelements.
r = db.ed.db.index5;
r.drop();
r.save( { comments : [ { name : "eliot", foo : 1 } ] } );
r.ensureIndex( { "comments.name": 1 } );
assert( r.findOne( { "comments.name": "eliot" } ) );