HHH-5797 HHH-2558 - Fix tests failing on PostgreSQL and MariaDB

This commit is contained in:
Andrea Boriero 2018-01-09 16:16:49 +00:00
parent e68986bf57
commit 829b33822f
1 changed files with 3 additions and 3 deletions

View File

@ -246,7 +246,7 @@ public class IdentityJoinedSubclassBatchingTest extends BaseCoreFunctionalTestCa
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private String id;
private Integer id;
@Column(nullable = false, length = 80)
private String name;
@ -286,11 +286,11 @@ public class IdentityJoinedSubclassBatchingTest extends BaseCoreFunctionalTestCa
this.sex = sex;
}
public String getId() {
public Integer getId() {
return id;
}
public void setId(String id) {
public void setId(Integer id) {
this.id = id;
}