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") @MapsId("personAId")
@ManyToOne(optional = false) @ManyToOne(optional = false)
@JoinColumn(insertable = false, updatable = false) @JoinColumn(insertable = false, updatable = false, nullable=false)
private Person personA; private Person personA;
@MapsId("personBId") @MapsId("personBId")
@ManyToOne(optional = false) @ManyToOne(optional = false)
@JoinColumn(insertable = false, updatable = false) @JoinColumn(insertable = false, updatable = false, nullable=false)
private Person personB; private Person personB;
@MapsId("constantId") @MapsId("constantId")
@ManyToOne(optional = false) @ManyToOne(optional = false)
@JoinColumn(insertable = false, updatable = false) @JoinColumn(insertable = false, updatable = false, nullable=false)
private Constant constant; private Constant constant;
@Column(nullable = false) @Column(nullable = false)