Fix HANA and Oracle old testsuite failure due to id column only table with identity

This commit is contained in:
Christian Beikov 2023-07-25 15:03:18 +02:00
parent 71dc1c2f64
commit dd385383bb
1 changed files with 3 additions and 2 deletions

View File

@ -72,8 +72,9 @@ public class RemoveAndOrderUpdateTest {
@Entity(name = "Form")
public static class Form {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue
protected Long id;
protected String name;
public Long getId() {
return id;
@ -88,7 +89,7 @@ public class RemoveAndOrderUpdateTest {
@Entity(name = "FormInput")
public static class FormInput {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue
private Long id;
@ManyToOne(optional = false, fetch = FetchType.EAGER)