summaryrefslogtreecommitdiff
path: root/jstests/in4.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2010-08-03 20:09:16 -0700
committerAaron <aaron@10gen.com>2010-08-03 20:09:16 -0700
commit701dc65282b7e154aca20ae1882ae7962c11e0b2 (patch)
tree7a7ed3a749e1d9fa53b386a5b117810d96817870 /jstests/in4.js
parent5240b2c0ff2b0f0f3999e456ac0b493d77153735 (diff)
downloadmongo-701dc65282b7e154aca20ae1882ae7962c11e0b2.tar.gz
SERVER-1528 account for expensive skipping operations in nscanned
Diffstat (limited to 'jstests/in4.js')
-rw-r--r--jstests/in4.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/in4.js b/jstests/in4.js
index 9aed608ccc5..f04c9f76686 100644
--- a/jstests/in4.js
+++ b/jstests/in4.js
@@ -41,7 +41,7 @@ assert.eq.automsg( "1", "t.find( {a:2,b:{$in:[3,4]},c:5} ).explain().nscanned" )
t.remove();
t.save( {a:2,b:4,c:5} );
t.save( {a:2,b:4,c:4} );
-assert.eq.automsg( "1", "t.find( {a:2,b:{$in:[3,4]},c:5} ).explain().nscanned" );
+assert.eq.automsg( "2", "t.find( {a:2,b:{$in:[3,4]},c:5} ).explain().nscanned" );
t.drop();
t.ensureIndex( {a:1,b:-1} );