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

12 lines
348 B
JavaScript

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( 3 , t.find( {i:{$in:[3,6]}} ).explain().nscanned , "B1" )