Skip to content

Commit 021c80b

Browse files
Hynek Svabekdreab8
authored andcommitted
HHH-9953 fix identifier is too long on OracleDB - ComponentNotNullTest
1 parent 6c01417 commit 021c80b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

hibernate-core/src/test/java/org/hibernate/test/legacy/ComponentNotNullMaster.hbm.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</component>
2929
</component>
3030

31-
<list name="components" lazy="true">
31+
<list name="components" lazy="true" table="CompNotNullMaster_Comps">
3232
<key column = "container_id"/>
3333
<index column = "list_index"/>
3434
<composite-element class="org.hibernate.test.legacy.ComponentNotNullMaster$ContainerInnerClass">
@@ -39,9 +39,8 @@
3939
<many-to-one name="many" cascade="save-update"/>
4040
</composite-element>
4141
</list>
42-
43-
44-
<list name="componentsImplicit" lazy="true">
42+
43+
<list name="componentsImplicit" lazy="true" table="CompNotNullMaster_CompsImpl">
4544
<key column = "container_id"/>
4645
<index column = "list_index3"/>
4746
<composite-element class="org.hibernate.test.legacy.ComponentNotNullMaster$ContainerInnerClass">

0 commit comments

Comments
 (0)