HHH-11037 - fix tests on Oracle
fixes ORA-00972: identifier is too long on Oracle databases
This commit is contained in:
parent
0a2a5c622e
commit
4bf4e3b81a
|
@ -68,7 +68,7 @@ public class JoinedSubclassWithEmbeddableTest extends BaseCoreFunctionalTestCase
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity(name = "Person")
|
||||||
@Inheritance(strategy = InheritanceType.JOINED)
|
@Inheritance(strategy = InheritanceType.JOINED)
|
||||||
public static abstract class Person implements Serializable {
|
public static abstract class Person implements Serializable {
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class SingleTableWithEmbeddableTest extends BaseCoreFunctionalTestCase {
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity(name = "Person")
|
||||||
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
|
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
|
||||||
public static abstract class Person implements Serializable {
|
public static abstract class Person implements Serializable {
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ public class TablePerClassWithEmbeddableTest extends BaseCoreFunctionalTestCase
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity(name = "Person")
|
||||||
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
|
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
|
||||||
public static abstract class Person implements Serializable {
|
public static abstract class Person implements Serializable {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue