summaryrefslogtreecommitdiff
path: root/jstests/capped3.js
diff options
context:
space:
mode:
authorDwight Merriman <dwight@10gen.com>2010-05-23 15:00:39 -0400
committerDwight Merriman <dwight@10gen.com>2010-05-23 15:00:39 -0400
commit27f5790d110eed10b1cef77a176c945ccaab2159 (patch)
tree6767065dcbeb86273c26fd11ca64c52426df352d /jstests/capped3.js
parent9aa407fd4e74f4a378dab7cf3437e4755a3fa1db (diff)
downloadmongo-27f5790d110eed10b1cef77a176c945ccaab2159.tar.gz
support up to 64 indexes
Diffstat (limited to 'jstests/capped3.js')
-rw-r--r--jstests/capped3.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/jstests/capped3.js b/jstests/capped3.js
index c4f1a3cdfbc..d6d2b23975b 100644
--- a/jstests/capped3.js
+++ b/jstests/capped3.js
@@ -23,9 +23,10 @@ c = t2.find().sort( {$natural:-1} );
i = 999;
while( c.hasNext() ) {
assert.eq( i--, c.next().i, "E" );
-}
-print( "i: " + i );
-print( "stats: " + tojson( t2.stats() ) );
+}
+//print( "i: " + i );
+var str = tojson( t2.stats() );
+//print( "stats: " + tojson( t2.stats() ) );
assert( i < 990, "F" );
t.drop();