0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/index_check7.js
2010-08-18 11:42:58 -07:00

16 lines
343 B
JavaScript

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( 40 , t.find( { x : { $gt : 59 } } ).explain().nscanned , "C" );