HHH-9737 : Back out of change that quoted ANSI keyword in hibernate-core

This commit is contained in:
Gail Badner 2015-04-30 17:18:02 -07:00
parent bc58df9a78
commit 7569355ad8
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ public class ElementCollectionTests extends BaseNonConfigCoreFunctionalTestCase
})
@ElementCollection(fetch = FetchType.LAZY)
@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)
public Map<ValueType, ValueType> map = new HashMap<ValueType, ValueType>();