0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/index_check7.js

16 lines
343 B
JavaScript
Raw Normal View History

2009-12-15 03:10:37 +01:00
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" );