Brett Meyer commented on an issue
Hibernate ORM / Bug HHH-8484
HQL left join fetch of an element collection following a left join fetch of a one-to-many relationship causes org.hibernate.QueryException (Similar but not the same as HHH-5465 Issue)
Similar but not the same as HHH-5465 Issue.
HQL queries of the form
"from EntityA a left join fetch a.entityB b left join fetch b.items"
fail with a QueryException when EntityA and EntityB have a one-to-many (@OneToMany) relationship and EntityB.items is also a list (one-to-many @OneToMany ) from EntityB and it's items
For comparison, the following H...