Skip to content

Commit 920ba36

Browse files
committed
HHH-2664 full join not working
1 parent 65895fb commit 920ba36

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hibernate-core/src/main/java/org/hibernate/hql/internal/ast/util/JoinProcessor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ public static JoinType toHibernateJoinType(int astJoinType) {
9494
return JoinType.INNER_JOIN;
9595
case RIGHT_OUTER:
9696
return JoinType.RIGHT_OUTER_JOIN;
97+
case FULL:
98+
return JoinType.FULL_JOIN;
9799
default:
98100
throw new AssertionFailure( "undefined join type " + astJoinType );
99101
}

0 commit comments

Comments
 (0)