Skip to content

Commit f429a8c

Browse files
Hynek Svabekdreab8
authored andcommitted
HHH-9915 - test fail on Oracle (long identifier name)
1 parent 021c80b commit f429a8c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hibernate-core/src/test/java/org/hibernate/test/annotations/indexcoll/ExchangeOffice.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import java.math.BigDecimal;
1111
import java.util.Map;
1212

13+
import javax.persistence.CollectionTable;
1314
import javax.persistence.ElementCollection;
1415
import javax.persistence.Entity;
1516
import javax.persistence.GeneratedValue;
@@ -46,6 +47,7 @@ public Map<ExchangeRateKey,ExchangeRate> getExchangeRates() {
4647
}
4748

4849
@ElementCollection
50+
@CollectionTable(name = "ExchangeO_exchangeRateFees")
4951
private Map<ExchangeRateKey, BigDecimal> exchangeRateFees = new java.util.HashMap<ExchangeRateKey, BigDecimal>();
5052

5153
public Map<ExchangeRateKey,BigDecimal> getExchangeRateFees() {

0 commit comments

Comments
 (0)