HHH-17131 Fix collection fetch detection for join-fetched associations
This commit is contained in:
parent
dadfa62a01
commit
26640ce1fa
|
@ -150,6 +150,11 @@ public class EntityFetchJoinedImpl extends AbstractNonLazyEntityFetch {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean containsCollectionFetches() {
|
||||||
|
return entityResult.containsCollectionFetches();
|
||||||
|
}
|
||||||
|
|
||||||
public EntityResultImpl getEntityResult() {
|
public EntityResultImpl getEntityResult() {
|
||||||
return entityResult;
|
return entityResult;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue