Skip to content

Commit

Permalink
Reset max rows to 10000, had got incorrectly changed
Browse files Browse the repository at this point in the history
Signed-off-by: Rohit Nayak <rohit@planetscale.com>
  • Loading branch information
rohit-nayak-ps committed Mar 24, 2020
1 parent 077ed98 commit 147a6db
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions examples/are-you-alive/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ go 1.12

require (
github.com/go-sql-driver/mysql v1.5.0
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/prometheus/client_golang v1.4.1
github.com/sirupsen/logrus v1.4.2
)
2 changes: 1 addition & 1 deletion go/test/endtoend/cluster/vttablet_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func executeQuery(dbParams mysql.ConnParams, query string) (*sqltypes.Result, er
return nil, err
}
defer dbConn.Close()
qr, err := dbConn.ExecuteFetch(query, 1000, true)
qr, err := dbConn.ExecuteFetch(query, 10000, true)
return qr, err
}

Expand Down

0 comments on commit 147a6db

Please sign in to comment.