blob: 1ec53ca8561b9405b14caa149945d056c606b97f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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" )
|