We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36eb0e3 commit 6ca4317Copy full SHA for 6ca4317
sqldb/paginate.go
@@ -23,7 +23,9 @@ type PagedQueryConfig struct {
23
// DefaultPagedQueryConfig returns a default configuration
24
func DefaultPagedQueryConfig() *PagedQueryConfig {
25
return &PagedQueryConfig{
26
- PageSize: 1000,
+ // TODO(elle): make configurable & have different defaults
27
+ // for SQLite and Postgres.
28
+ PageSize: 250,
29
}
30
31
0 commit comments