mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
20 lines
579 B
JavaScript
20 lines
579 B
JavaScript
|
|
t = db.in1;
|
|
t.drop();
|
|
|
|
t.save( { a : 1 } );
|
|
t.save( { a : 2 } );
|
|
|
|
assert.eq( 1 , t.find( { a : { $in : [ 1 ] } } ).itcount() , "A" );
|
|
assert.eq( 1 , t.find( { a : { $in : [ 2 ] } } ).itcount() , "B" );
|
|
assert.eq( 2 , t.find( { a : { $in : [ 1 , 2 ] } } ).itcount() , "C" );
|
|
|
|
t.ensureIndex( { a : 1 } );
|
|
|
|
assert.eq( 1 , t.find( { a : { $in : [ 1 ] } } ).itcount(), "D" );
|
|
assert.eq( 1 , t.find( { a : { $in : [ 2 ] } } ).itcount() , "E" );
|
|
assert.eq( 2 , t.find( { a : { $in : [ 1 , 2 ] } } ).itcount() , "F" );
|
|
|
|
assert.eq( 0 , t.find( { a : { $in : [] } } ).itcount() , "G" );
|
|
|