summaryrefslogtreecommitdiff
path: root/jstests/core/fm2.js
blob: 93284c0c6115d2fd0d40a5ca74961fc9553d85f1 (plain)
1
2
3
4
5
6
7
8
9

t = db.fm2;
t.drop();

t.insert( { "one" : { "two" : {"three":"four"} } } );

x = t.find({},{"one.two":1})[0];
assert.eq( 1 , Object.keySet( x.one ).length , "ks l 1" );