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 {
|
public static class ChildEntityFour {
|
||||||
@EmbeddedId
|
@EmbeddedId
|
||||||
private ChildFourId id;
|
private ChildFourId id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity(name = "ChildEntityOne")
|
||||||
public static class ChildEntityOne {
|
public static class ChildEntityOne {
|
||||||
@EmbeddedId
|
@EmbeddedId
|
||||||
private ChildOneId id;
|
private ChildOneId id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity(name = "ChildTwoEntity")
|
||||||
@DynamicUpdate
|
@DynamicUpdate
|
||||||
public static class ChildTwoEntity {
|
public static class ChildTwoEntity {
|
||||||
@EmbeddedId
|
@EmbeddedId
|
||||||
private ChildTwoId id;
|
private ChildTwoId id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity(name = "ChildEntityThree")
|
||||||
public static class ChildEntityThree {
|
public static class ChildEntityThree {
|
||||||
@EmbeddedId
|
@EmbeddedId
|
||||||
private ChildThreeId id;
|
private ChildThreeId id;
|
||||||
|
|
Loading…
Reference in New Issue