Skip to content

Commit 386cd74

Browse files
committed
HHH-10296 : Fix more DB reserved words used by tests
(cherry picked from commit 104635b)
1 parent 519ba71 commit 386cd74

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hibernate-core/src/test/java/org/hibernate/test/converter/elementCollection/CollectionElementConversionTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
import java.util.Set;
1515

1616
import javax.persistence.AttributeConverter;
17+
import javax.persistence.CollectionTable;
18+
import javax.persistence.Column;
1719
import javax.persistence.Converter;
1820
import javax.persistence.ElementCollection;
1921
import javax.persistence.Entity;
@@ -74,6 +76,7 @@ public static class Customer {
7476
@Id
7577
private Integer id;
7678
@ElementCollection
79+
@Column(name = "`set`")
7780
private Set<Color> set;
7881
@ElementCollection
7982
@Enumerated(EnumType.STRING)

0 commit comments

Comments
 (0)