HHH-13191 - Fix test using a table-name that wasn't compliant across dialects.
This commit is contained in:
parent
53c589a9e1
commit
b66f548b5f
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue