OPENJPA-2525: Change new test entities to use AUTO instead of IDENTITY pk generation

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1629049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jody Grassel 2014-10-02 19:20:31 +00:00
parent 319bb37fe1
commit 3235030257
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ public class ACase {
private int id;
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@GeneratedValue(strategy=GenerationType.AUTO)
public int getId() {
return id;
}

View File

@ -32,7 +32,7 @@ public class AEvident {
private int id;
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@GeneratedValue(strategy=GenerationType.AUTO)
public int getId() {
return id;
}

View File

@ -37,7 +37,7 @@ public class AText {
private int id;
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@GeneratedValue(strategy=GenerationType.AUTO)
public int getId() {
return id;
}