2010-03-02 16:10:00 +01:00
|
|
|
|
|
|
|
t = db.arrayfind2;
|
|
|
|
t.drop();
|
|
|
|
|
|
|
|
function go( prefix ){
|
|
|
|
assert.eq( 3 , t.count() , prefix + " A1" );
|
|
|
|
assert.eq( 3 , t.find( { a : { $elemMatch : { x : { $gt : 4 } } } } ).count() , prefix + " A2" );
|
|
|
|
assert.eq( 1 , t.find( { a : { $elemMatch : { x : { $lt : 2 } } } } ).count() , prefix + " A3" );
|
|
|
|
assert.eq( 1 , t.find( { a : { $all : [ { $elemMatch : { x : { $lt : 4 } } } ,
|
|
|
|
{ $elemMatch : { x : { $gt : 5 } } } ] } } ).count() , prefix + " A4" );
|
|
|
|
|
2010-03-09 20:53:40 +01:00
|
|
|
assert.throws( function() { return t.findOne( { a : { $all : [ 1, { $elemMatch : { x : 3 } } ] } } ) } );
|
|
|
|
assert.throws( function() { return t.findOne( { a : { $all : [ /a/, { $elemMatch : { x : 3 } } ] } } ) } );
|
|
|
|
|
2010-03-02 16:10:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
t.save( { a : [ { x : 1 } , { x : 5 } ] } )
|
|
|
|
t.save( { a : [ { x : 3 } , { x : 5 } ] } )
|
|
|
|
t.save( { a : [ { x : 3 } , { x : 6 } ] } )
|
|
|
|
|
|
|
|
go( "no index" );
|
|
|
|
t.ensureIndex( { a : 1 } );
|
|
|
|
go( "index(a)" );
|
|
|
|
|
2010-07-16 14:09:10 +02:00
|
|
|
assert.eq( {}, t.find( { a : { $all : [ { $elemMatch : { x : 3 } } ] } } ).explain().indexBounds );
|
2010-03-09 20:53:40 +01:00
|
|
|
|
|
|
|
t.ensureIndex( { "a.x": 1 } );
|
|
|
|
|
2010-07-16 14:09:10 +02:00
|
|
|
assert.eq( {"a.x":[[3,3]]}, t.find( { a : { $all : [ { $elemMatch : { x : 3 } } ] } } ).explain().indexBounds );
|
2010-03-09 20:53:40 +01:00
|
|
|
// only first $elemMatch used to find bounds
|
2010-07-16 14:09:10 +02:00
|
|
|
assert.eq( {"a.x":[[3,3]]}, t.find( { a : { $all : [ { $elemMatch : { x : 3 } }, { $elemMatch : { y : 5 } } ] } } ).explain().indexBounds );
|
2010-03-09 20:53:40 +01:00
|
|
|
|
|
|
|
t.ensureIndex( { "a.x":1,"a.y":-1 } );
|
|
|
|
|
2010-07-16 14:09:10 +02:00
|
|
|
assert.eq( {"a.x":[[3,3]],"a.y":[[1.7976931348623157e+308,4]]}, t.find( { a : { $all : [ { $elemMatch : { x : 3, y : { $gt: 4 } } } ] } } ).explain().indexBounds );
|