#799 - Query.fetch(path) when converted to query join default to batchSize 10 rather than 100

This commit is contained in:
Robin Bygrave
2016-08-02 20:19:38 +12:00
parent ca1c0a08f3
commit 6e2148d20b
3 changed files with 28 additions and 12 deletions
@@ -56,11 +56,9 @@ public abstract class DLoadBaseContext {
int queryBatchSize = queryProps.getQueryFetchBatch();
if (queryBatchSize == -1) {
// not eager query fetch, just lazy loading
return batchSize;
} else if (queryBatchSize == 0) {
// default query fetch batch size is 100
return 100;
} else {