mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
12 lines
378 B
JavaScript
12 lines
378 B
JavaScript
t = db.jstests_in3;
|
|
|
|
t.drop();
|
|
t.ensureIndex( {i:1} );
|
|
assert.eq( [ [ {i:3}, {i:3} ] ], t.find( {i:{$in:[3]}} ).explain().indexBounds , "A1" );
|
|
assert.eq( [ [ {i:3}, {i:3} ], [ {i:6}, {i:6} ] ], t.find( {i:{$in:[3,6]}} ).explain().indexBounds , "A2" );
|
|
|
|
for ( var i=0; i<20; i++ )
|
|
t.insert( { i : i } );
|
|
|
|
assert.eq( 2 , t.find( {i:{$in:[3,6]}} ).explain().nscanned , "B1" )
|