mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
16 lines
343 B
JavaScript
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( 41 , t.find( { x : { $gt : 59 } } ).explain().nscanned , "C" );
|
|
|