mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
HHH-2664 full join not working
This commit is contained in:
parent
fca8f3c1af
commit
08215bad73
@ -94,6 +94,8 @@ public static JoinType toHibernateJoinType(int astJoinType) {
|
||||
return JoinType.INNER_JOIN;
|
||||
case RIGHT_OUTER:
|
||||
return JoinType.RIGHT_OUTER_JOIN;
|
||||
case FULL:
|
||||
return JoinType.FULL_JOIN;
|
||||
default:
|
||||
throw new AssertionFailure( "undefined join type " + astJoinType );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user