OPENJPA-1983: Change test Entities to work on Oracle.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1095805 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2011-04-21 20:21:35 +00:00
parent 354eb3078e
commit 045818b05d
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ import javax.persistence.Table;
public class Inner {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id = null;
private String name = null;

View File

@ -34,7 +34,7 @@ import javax.persistence.Table;
public class Outer {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id = null;
private String name = null;