mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-09 12:44:49 +00:00
Fix issues with too long table/column names for Oracle 11
This commit is contained in:
parent
46bd869e78
commit
79d3cb99ef
@ -117,26 +117,26 @@ public static class ChildFourId implements Serializable {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@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…
x
Reference in New Issue
Block a user