mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 08:05:05 +00:00
HHH-9432 Fix test failures
This commit is contained in:
parent
921a958e88
commit
4e4f2e40b4
@ -116,7 +116,7 @@ public static class EntityA {
|
||||
|
||||
@ManyToMany
|
||||
@JoinColumn(name = "allC")
|
||||
@Where(clause = "TYPE = 'C'")
|
||||
@Where(clause = "type = 'C'")
|
||||
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
|
||||
@AuditJoinTable(name = "A_C_AUD")
|
||||
private Set<EntityC> allMyC;
|
||||
@ -190,7 +190,7 @@ public static class EntityX {
|
||||
private String name;
|
||||
|
||||
@ManyToMany
|
||||
@Where(clause = "TYPE = 'Z'")
|
||||
@Where(clause = "type = 'Z'")
|
||||
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
|
||||
private Set<EntityZ> allMyZ;
|
||||
|
||||
|
@ -118,7 +118,7 @@ public static class EntityA {
|
||||
|
||||
@OneToMany
|
||||
@JoinColumn(name = "allC")
|
||||
@Where(clause = "TYPE = 'C'")
|
||||
@Where(clause = "type = 'C'")
|
||||
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
|
||||
@AuditJoinTable(name = "A_C_AUD")
|
||||
private Set<EntityC> allMyC;
|
||||
@ -192,7 +192,7 @@ public static class EntityX {
|
||||
private String name;
|
||||
|
||||
@OneToMany
|
||||
@Where(clause = "TYPE = 'Z'")
|
||||
@Where(clause = "type = 'Z'")
|
||||
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
|
||||
private Set<EntityZ> allMyZ;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user