HHH-7569 Correct test-only failures in hibernate-core-master-matrix CI
job(cherry picked from commit 69442c6ea7
)
This commit is contained in:
parent
6269121718
commit
518fa90dd7
|
@ -79,17 +79,17 @@ public class PersonTuple implements Serializable {
|
|||
|
||||
@MapsId("personAId")
|
||||
@ManyToOne(optional = false)
|
||||
@JoinColumn(insertable = false, updatable = false)
|
||||
@JoinColumn(insertable = false, updatable = false, nullable=false)
|
||||
private Person personA;
|
||||
|
||||
@MapsId("personBId")
|
||||
@ManyToOne(optional = false)
|
||||
@JoinColumn(insertable = false, updatable = false)
|
||||
@JoinColumn(insertable = false, updatable = false, nullable=false)
|
||||
private Person personB;
|
||||
|
||||
@MapsId("constantId")
|
||||
@ManyToOne(optional = false)
|
||||
@JoinColumn(insertable = false, updatable = false)
|
||||
@JoinColumn(insertable = false, updatable = false, nullable=false)
|
||||
private Constant constant;
|
||||
|
||||
@Column(nullable = false)
|
||||
|
|
Loading…
Reference in New Issue