summaryrefslogtreecommitdiff
path: root/jstests/in3.js
blob: 305fb228d7b4df780da5ba65df5b03f6c0c3c0c9 (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,3]]}, t.find( {i:{$in:[3]}} ).explain().indexBounds , "A1" );
assert.eq( {i:[[3,3],[6,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" )