HHH-12764 - Fix test failure with Oracle.
This commit is contained in:
parent
6dea02bac5
commit
35cd3a1c38
|
@ -25,7 +25,12 @@ public class IdClassReferenceIdentifierTest extends BaseEnversJPAFunctionalTestC
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Class<?>[] getAnnotatedClasses() {
|
protected Class<?>[] getAnnotatedClasses() {
|
||||||
return new Class<?>[] {ReferenceIdentifierEntity.class, ReferenceIdentifierClassId.class, ClassType.class, IntegerGeneratedIdentityEntity.class};
|
return new Class<?>[] {
|
||||||
|
ReferenceIdentifierEntity.class,
|
||||||
|
ReferenceIdentifierClassId.class,
|
||||||
|
ClassType.class,
|
||||||
|
IntegerGeneratedIdentityEntity.class
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -17,7 +17,7 @@ import java.io.Serializable;
|
||||||
* @author Matthew Morrissette (yinzara at gmail dot com)
|
* @author Matthew Morrissette (yinzara at gmail dot com)
|
||||||
*/
|
*/
|
||||||
@Audited
|
@Audited
|
||||||
@Entity
|
@Entity(name = "IntegerGenIdEntity")
|
||||||
public class IntegerGeneratedIdentityEntity implements Serializable {
|
public class IntegerGeneratedIdentityEntity implements Serializable {
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
|
|
Loading…
Reference in New Issue