HHH-5797 HHH-2558 - Fix tests failing on PostgreSQL and MariaDB
This commit is contained in:
parent
e68986bf57
commit
829b33822f
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue