mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
show 20 instead of 10 things
This commit is contained in:
parent
8b42f2ad0a
commit
d969b31abd
@ -140,7 +140,7 @@ DBQuery.prototype.explain = function(){
|
||||
DBQuery.prototype.shellPrint = function(){
|
||||
try {
|
||||
var n = 0;
|
||||
while ( this.hasNext() && n < 10 ){
|
||||
while ( this.hasNext() && n < 20 ){
|
||||
var s = tojson( this.next() );
|
||||
print( s );
|
||||
n++;
|
||||
|
Loading…
Reference in New Issue
Block a user