Skip to content

Commit 60283ce

Browse files
committed
HHH-15060 - fix bad test
1 parent d530de4 commit 60283ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hibernate-core/src/test/java/org/hibernate/jpa/test/query/TypedQueryResultListTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ public static class Parent {
8484
@GeneratedValue
8585
private int id;
8686

87-
@Column(name = "NUMBER", nullable = false, precision = 9)
87+
@Column(name = "num", nullable = false, precision = 9)
8888
private Integer number;
8989

9090
@ManyToOne(fetch = FetchType.LAZY)
91-
@JoinColumn(name = "SOURCE_ID", referencedColumnName = "ID")
91+
@JoinColumn(name = "source_fk", referencedColumnName = "id")
9292
@NotFound(action = NotFoundAction.IGNORE)
9393
private Parent sourceParent;
9494

95-
@Column(name = "TEXT", nullable = false, length = 20)
95+
@Column(name = "txt", nullable = false, length = 20)
9696
private String text;
9797

9898
Parent() {

0 commit comments

Comments
 (0)