We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7294cb2 commit 697bcfbCopy full SHA for 697bcfb
hibernate-core/src/test/java/org/hibernate/orm/test/hql/NaturalIdDereferenceTest.java
@@ -369,7 +369,7 @@ public static class BookRef {
369
private Long id;
370
371
@ManyToOne(optional = true)
372
- @JoinColumn(nullable = true, columnDefinition = "id_ref")
+ @JoinColumn(nullable = true, name = "id_ref")
373
private Book normalBook;
374
375
@ManyToOne
@@ -387,7 +387,7 @@ public static class BookRefRef {
387
388
389
390
- @JoinColumn(nullable = true, columnDefinition = "id_ref_ref")
+ @JoinColumn(nullable = true, name = "id_ref_ref")
391
private BookRef normalBookRef;
392
393
0 commit comments