HHH-9915 - test fail on Oracle (long identifier name)

This commit is contained in:
Hynek Svabek 2015-07-13 15:33:04 +02:00 committed by Andrea Boriero
parent 021c80b5a0
commit f429a8cb28
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ package org.hibernate.test.annotations.indexcoll;
import java.math.BigDecimal;
import java.util.Map;
import javax.persistence.CollectionTable;
import javax.persistence.ElementCollection;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
@ -46,6 +47,7 @@ public class ExchangeOffice {
}
@ElementCollection
@CollectionTable(name = "ExchangeO_exchangeRateFees")
private Map<ExchangeRateKey, BigDecimal> exchangeRateFees = new java.util.HashMap<ExchangeRateKey, BigDecimal>();
public Map<ExchangeRateKey,BigDecimal> getExchangeRateFees() {