diff options
author | Dwight Merriman <dwight@10gen.com> | 2010-05-23 15:00:39 -0400 |
---|---|---|
committer | Dwight Merriman <dwight@10gen.com> | 2010-05-23 15:00:39 -0400 |
commit | 27f5790d110eed10b1cef77a176c945ccaab2159 (patch) | |
tree | 6767065dcbeb86273c26fd11ca64c52426df352d /jstests/capped3.js | |
parent | 9aa407fd4e74f4a378dab7cf3437e4755a3fa1db (diff) | |
download | mongo-27f5790d110eed10b1cef77a176c945ccaab2159.tar.gz |
support up to 64 indexes
Diffstat (limited to 'jstests/capped3.js')
-rw-r--r-- | jstests/capped3.js | 7 |
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(); |