summaryrefslogtreecommitdiff
path: root/jstests/useindexonobjgtlt.js
blob: 06e94a812f61bfbd4db4148263e21cac1a5ced1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
t = db.factories
t.drop()
t.insert( { name: "xyz", metro: { city: "New York", state: "NY" } } )
t.ensureIndex( { metro : 1 } )

assert( db.factories.find().count() )

assert( db.factories.find( { metro: { city: "New York", state: "NY" } } ).count() )

assert( db.factories.find( { metro: { city: "New York", state: "NY" } } ).explain().cursor == "BtreeCursor metro_1" )

assert( db.factories.find( { metro: { $gte : { city: "New York" } } } ).explain().cursor == "BtreeCursor metro_1" )

assert( db.factories.find( { metro: { $gte : { city: "New York" } } } ).count() == 1 )