HHH-11037 - fix tests on Oracle

fixes ORA-00972: identifier is too long on Oracle databases
This commit is contained in:
Martin Simka 2016-08-31 13:32:38 +02:00 committed by Vlad Mihalcea
parent 0a2a5c622e
commit 4bf4e3b81a
3 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ public class JoinedSubclassWithEmbeddableTest extends BaseCoreFunctionalTestCase
} );
}
@Entity
@Entity(name = "Person")
@Inheritance(strategy = InheritanceType.JOINED)
public static abstract class Person implements Serializable {

View File

@ -69,7 +69,7 @@ public class SingleTableWithEmbeddableTest extends BaseCoreFunctionalTestCase {
} );
}
@Entity
@Entity(name = "Person")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
public static abstract class Person implements Serializable {

View File

@ -68,7 +68,7 @@ public class TablePerClassWithEmbeddableTest extends BaseCoreFunctionalTestCase
} );
}
@Entity
@Entity(name = "Person")
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public static abstract class Person implements Serializable {