Skip to content

Commit 0000347

Browse files
committed
Fix issues with too long table/column names for Oracle 11
1 parent 51b6833 commit 0000347

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/cuk/JoinColumnOccursOutOfOrderTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,26 +117,26 @@ public static class ChildFourId implements Serializable {
117117

118118
}
119119

120-
@Entity
120+
@Entity(name = "ChildEntityFour")
121121
public static class ChildEntityFour {
122122
@EmbeddedId
123123
private ChildFourId id;
124124
}
125125

126-
@Entity
126+
@Entity(name = "ChildEntityOne")
127127
public static class ChildEntityOne {
128128
@EmbeddedId
129129
private ChildOneId id;
130130
}
131131

132-
@Entity
132+
@Entity(name = "ChildTwoEntity")
133133
@DynamicUpdate
134134
public static class ChildTwoEntity {
135135
@EmbeddedId
136136
private ChildTwoId id;
137137
}
138138

139-
@Entity
139+
@Entity(name = "ChildEntityThree")
140140
public static class ChildEntityThree {
141141
@EmbeddedId
142142
private ChildThreeId id;

0 commit comments

Comments
 (0)