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