summaryrefslogtreecommitdiff
path: root/jstests/index_check7.js
blob: 68102d613531acc2c7a7e5f335a7802f7e311eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

t = db.index_check7
t.drop()

for ( var i=0; i<100; i++ )
    t.save( { x : i } )

t.ensureIndex( { x : 1 } )
assert.eq( 1 , t.find( { x : 27 } ).explain().nscanned , "A" )

t.ensureIndex( { x : -1 } )
assert.eq( 1 , t.find( { x : 27 } ).explain().nscanned , "B" )

assert.eq( 41 , t.find( { x : { $gt : 59 } } ).explain().nscanned , "C" );