#2024 - Change default "fetchBuffer" for findEach/iterate/stream queries to 100

This commit is contained in:
rob bygrave
2020-06-19 22:36:24 +12:00
parent 729aeae0d7
commit a8ff918bb3
3 changed files with 4 additions and 2 deletions
@@ -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();