summaryrefslogtreecommitdiff
path: root/jstests/fm2.js
blob: 00ccdf4afee2dfeb2ad74f7672c148e058726dbc (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" );