summaryrefslogtreecommitdiff
path: root/jstests/index6.js
blob: 7514aca1eabce5a40ee48d3af67f5217fa2cda36 (plain)
1
2
3
4
5
6
7
8
// 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" } ) );