diff --git a/jstests/arrayfind1.js b/jstests/arrayfind1.js index 900a7e1f345..819c574187c 100644 --- a/jstests/arrayfind1.js +++ b/jstests/arrayfind1.js @@ -36,5 +36,6 @@ res = t.find( { "a" : { $elemMatch : { x : { $gt : 2 } } } } ).explain() assert( res.cursor.indexOf( "BtreeC" ) == 0 , "C1" ); assert.eq( 2 , t.find( { a : { $elemMatch : { x : { $gt : 2 } } } } ).count() , "D2" ); +printjson( t.find( { a : { $ne:2, $elemMatch : { x : { $gt : 2 } } } } ).explain() ); assert.eq( 2 , t.find( { a : { $ne:2, $elemMatch : { x : { $gt : 2 } } } } ).count() , "E1" ); assert( t.find( { a : { $ne:2, $elemMatch : { x : { $gt : 2 } } } } ).explain().cursor.indexOf( "BtreeC" ) == 0 , "E2" );