Guenther Demetz commented on Bug HHH-7446

The simplest solution is to replace concerning java.util.HashMap with a java.util.ConcurrentHashMap.

Table.java line 61:
<<private Map<String,UniqueKey> uniqueKeys = new HashMap<String,UniqueKey>();
>>private Map<String,UniqueKey> uniqueKeys = new ConcurrentHashMap<String,UniqueKey>();

Tested it and it works ...

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira