HHH-14877 - FetchMode.SUBSELECT ignored

Worked on FetchMode.SUBSELECT support but also worked on a few general collection fetch issues and a few improvements
This commit is contained in:
Steve Ebersole 2021-10-20 09:13:34 -05:00
parent aca86036d3
commit 653de50aa5
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<hibernate-mapping>
<class name="org.hibernate.orm.test.mapping.fetch.subselectfetch.Name" table="T_Name">
<class name="org.hibernate.orm.test.mapping.fetch.subselect.Name" table="T_Name">
<id name="id" column="id"/>
<property name="name" column="c_name"/>
@ -19,7 +19,7 @@
<bag name="values" inverse="true" lazy="false" fetch="subselect">
<key column="name_id"/>
<one-to-many class="org.hibernate.orm.test.mapping.fetch.subselectfetch.Value"/>
<one-to-many class="org.hibernate.orm.test.mapping.fetch.subselect.Value"/>
</bag>
</class>