HHH-7569 Correct test-only failures in hibernate-core-master-matrix CI

job(cherry picked from commit 69442c6ea7)
This commit is contained in:
brmeyer 2012-09-18 07:13:20 -04:00 committed by Brett Meyer
parent 6269121718
commit 518fa90dd7
1 changed files with 3 additions and 3 deletions

View File

@ -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)