mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2024 - Change default "fetchBuffer" for findEach/iterate/stream queries to 100
This commit is contained in:
@@ -246,7 +246,7 @@ public class TestQueryFindIterate extends BaseTestCase {
|
||||
.order().asc("id");
|
||||
|
||||
if (withLoadBatch) {
|
||||
query.setLazyLoadBatchSize(100);
|
||||
query.setLazyLoadBatchSize(1);
|
||||
}
|
||||
|
||||
QueryIterator<Customer> queryIterator = query.findIterate();
|
||||
|
||||
Reference in New Issue
Block a user