Fix issues with too long table/column names for Oracle 11
This commit is contained in:
parent
51b6833876
commit
0000347b03
|
@ -117,26 +117,26 @@ public class JoinColumnOccursOutOfOrderTest {
|
|||
|
||||
}
|
||||
|
||||
@Entity
|
||||
@Entity(name = "ChildEntityFour")
|
||||
public static class ChildEntityFour {
|
||||
@EmbeddedId
|
||||
private ChildFourId id;
|
||||
}
|
||||
|
||||
@Entity
|
||||
@Entity(name = "ChildEntityOne")
|
||||
public static class ChildEntityOne {
|
||||
@EmbeddedId
|
||||
private ChildOneId id;
|
||||
}
|
||||
|
||||
@Entity
|
||||
@Entity(name = "ChildTwoEntity")
|
||||
@DynamicUpdate
|
||||
public static class ChildTwoEntity {
|
||||
@EmbeddedId
|
||||
private ChildTwoId id;
|
||||
}
|
||||
|
||||
@Entity
|
||||
@Entity(name = "ChildEntityThree")
|
||||
public static class ChildEntityThree {
|
||||
@EmbeddedId
|
||||
private ChildThreeId id;
|
||||
|
|
Loading…
Reference in New Issue