We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fbe3e1 commit 1ba2203Copy full SHA for 1ba2203
hibernate-core/src/test/java/org/hibernate/orm/test/jpa/remove/RemoveAndOrderUpdateTest.java
@@ -72,8 +72,9 @@ public void testRemove(EntityManagerFactoryScope scope) {
72
@Entity(name = "Form")
73
public static class Form {
74
@Id
75
- @GeneratedValue(strategy = GenerationType.IDENTITY)
+ @GeneratedValue
76
protected Long id;
77
+ protected String name;
78
79
public Long getId() {
80
return id;
@@ -88,7 +89,7 @@ public void setId(Long id) {
88
89
@Entity(name = "FormInput")
90
public static class FormInput {
91
92
93
private Long id;
94
95
@ManyToOne(optional = false, fetch = FetchType.EAGER)
0 commit comments