HHH-13191 - Fix test using a table-name that wasn't compliant across dialects.

This commit is contained in:
Chris Cranford 2019-01-10 10:52:27 -05:00
parent 53c589a9e1
commit b66f548b5f
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.envers.AuditJoinTable;
import org.hibernate.envers.Audited;
import org.hibernate.envers.test.BaseEnversJPAFunctionalTestCase;
import org.hibernate.envers.test.Priority;
@ -155,6 +156,7 @@ public class IdentifierProxyJtaSessionClosedBeforeCommitTest extends BaseEnversJ
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "idclient")
@AuditJoinTable(name = "AuthClient_AuthUser_AUD")
private List<AuthUser> authUsers = new ArrayList<>();
public AuthClient() {