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 65895fb commit 920ba36Copy full SHA for 920ba36
hibernate-core/src/main/java/org/hibernate/hql/internal/ast/util/JoinProcessor.java
@@ -94,6 +94,8 @@ public static JoinType toHibernateJoinType(int astJoinType) {
94
return JoinType.INNER_JOIN;
95
case RIGHT_OUTER:
96
return JoinType.RIGHT_OUTER_JOIN;
97
+ case FULL:
98
+ return JoinType.FULL_JOIN;
99
default:
100
throw new AssertionFailure( "undefined join type " + astJoinType );
101
}
0 commit comments