HHH-9737 : Back out of change that quoted ANSI keyword in hibernate-core
This commit is contained in:
parent
bc58df9a78
commit
7569355ad8
|
@ -177,7 +177,7 @@ public class ElementCollectionTests extends BaseNonConfigCoreFunctionalTestCase
|
||||||
})
|
})
|
||||||
@ElementCollection(fetch = FetchType.LAZY)
|
@ElementCollection(fetch = FetchType.LAZY)
|
||||||
@CollectionTable(name = "entity_map", joinColumns = @JoinColumn(name = "entity_id", nullable = false))
|
@CollectionTable(name = "entity_map", joinColumns = @JoinColumn(name = "entity_id", nullable = false))
|
||||||
@MapKeyColumn(name = "`key`", nullable = false)
|
@MapKeyColumn(name = "key", nullable = false)
|
||||||
@Column(name = "value", nullable = false)
|
@Column(name = "value", nullable = false)
|
||||||
public Map<ValueType, ValueType> map = new HashMap<ValueType, ValueType>();
|
public Map<ValueType, ValueType> map = new HashMap<ValueType, ValueType>();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue