diff options
author | Aaron <aaron@10gen.com> | 2010-02-23 22:49:50 -0800 |
---|---|---|
committer | Aaron <aaron@10gen.com> | 2010-02-23 22:49:50 -0800 |
commit | c0e6f059435869604765b4059e6188c9e5b2a357 (patch) | |
tree | 8c44b82dd246cb5e7a8082ac0a8bf5a507caa583 /jstests/arrayfind1.js | |
parent | e828661d89f51d594faac4cee7f6573b964d9e33 (diff) | |
download | mongo-c0e6f059435869604765b4059e6188c9e5b2a357.tar.gz |
Revert "SERVER-660 debug"
This reverts commit 439a43f876e40f357c2d263c3775a80e65e09cdf.
Diffstat (limited to 'jstests/arrayfind1.js')
-rw-r--r-- | jstests/arrayfind1.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/arrayfind1.js b/jstests/arrayfind1.js index 819c574187c..900a7e1f345 100644 --- a/jstests/arrayfind1.js +++ b/jstests/arrayfind1.js @@ -36,6 +36,5 @@ 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" ); |