HHH-18571 Fix bug and correctly report effective batching
This commit is contained in:
parent
98d9ac3654
commit
cc6ca28466
|
@ -325,7 +325,7 @@ public class LoadQueryInfluencers implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean effectivelyBatchLoadable(CollectionPersister persister) {
|
public boolean effectivelyBatchLoadable(CollectionPersister persister) {
|
||||||
return batchSize > 1 || persister.isBatchLoadable();
|
return persister.isBatchLoadable() || effectiveBatchSize( persister ) > 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int effectiveBatchSize(EntityPersister persister) {
|
public int effectiveBatchSize(EntityPersister persister) {
|
||||||
|
@ -336,7 +336,7 @@ public class LoadQueryInfluencers implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean effectivelyBatchLoadable(EntityPersister persister) {
|
public boolean effectivelyBatchLoadable(EntityPersister persister) {
|
||||||
return batchSize > 1 || persister.isBatchLoadable();
|
return persister.isBatchLoadable() || effectiveBatchSize( persister ) > 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean getSubselectFetchEnabled() {
|
public boolean getSubselectFetchEnabled() {
|
||||||
|
|
Loading…
Reference in New Issue