mongo-debian/jstests/in3.js
2011-03-17 00:05:43 +01:00

11 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" )