HHH-15060 - fix bad test
This commit is contained in:
parent
d530de492b
commit
60283ce9ea
|
@ -84,15 +84,15 @@ public class TypedQueryResultListTest extends BaseEntityManagerFunctionalTestCas
|
||||||
@GeneratedValue
|
@GeneratedValue
|
||||||
private int id;
|
private int id;
|
||||||
|
|
||||||
@Column(name = "NUMBER", nullable = false, precision = 9)
|
@Column(name = "num", nullable = false, precision = 9)
|
||||||
private Integer number;
|
private Integer number;
|
||||||
|
|
||||||
@ManyToOne(fetch = FetchType.LAZY)
|
@ManyToOne(fetch = FetchType.LAZY)
|
||||||
@JoinColumn(name = "SOURCE_ID", referencedColumnName = "ID")
|
@JoinColumn(name = "source_fk", referencedColumnName = "id")
|
||||||
@NotFound(action = NotFoundAction.IGNORE)
|
@NotFound(action = NotFoundAction.IGNORE)
|
||||||
private Parent sourceParent;
|
private Parent sourceParent;
|
||||||
|
|
||||||
@Column(name = "TEXT", nullable = false, length = 20)
|
@Column(name = "txt", nullable = false, length = 20)
|
||||||
private String text;
|
private String text;
|
||||||
|
|
||||||
Parent() {
|
Parent() {
|
||||||
|
|
Loading…
Reference in New Issue