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 67177fa commit 520538bCopy full SHA for 520538b
hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/ToOneAttributeMapping.java
@@ -1728,6 +1728,9 @@ private TableGroup createTableGroupForDelayedFetch(
1728
}
1729
1730
private boolean isSelectByUniqueKey(ForeignKeyDescriptor.Nature side) {
1731
+ if ( referencedPropertyName == null ) {
1732
+ return false;
1733
+ }
1734
if ( side == ForeignKeyDescriptor.Nature.KEY ) {
1735
// case 1.2
1736
return !foreignKeyDescriptor.getNavigableRole()
0 commit comments