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 e2a1ae2 commit 304af1cCopy full SHA for 304af1c
hibernate-core/src/test/java/org/hibernate/orm/test/locking/warning/LockNoneWarmingTest.java
@@ -9,6 +9,7 @@
9
import java.io.Serializable;
10
import java.util.HashSet;
11
import java.util.Set;
12
+import javax.persistence.Column;
13
import javax.persistence.Entity;
14
import javax.persistence.FetchType;
15
import javax.persistence.Id;
@@ -91,6 +92,7 @@ public static class Item implements Serializable {
91
92
@Id
93
String name;
94
95
+ @Column(name = "i_comment")
96
String comment;
97
98
@OneToMany(mappedBy = "item", fetch = FetchType.EAGER)
@@ -107,6 +109,7 @@ public static class Bid implements Serializable {
107
109
@ManyToOne
108
110
Item item;
111
112
+ @Column(name = "b_comment")
113
114
}
115
0 commit comments