HHH-17131 Fix collection fetch detection for join-fetched associations

This commit is contained in:
Marco Belladelli 2023-08-29 12:06:09 +02:00 committed by Christian Beikov
parent 19783f1845
commit 7b942b0c6a
1 changed files with 5 additions and 0 deletions

View File

@ -150,6 +150,11 @@ public class EntityFetchJoinedImpl extends AbstractNonLazyEntityFetch {
return true;
}
@Override
public boolean containsCollectionFetches() {
return entityResult.containsCollectionFetches();
}
public EntityResultImpl getEntityResult() {
return entityResult;
}