HHH-2664 full join not working
This commit is contained in:
parent
65895fb68e
commit
920ba3641f
|
@ -94,6 +94,8 @@ public class JoinProcessor implements SqlTokenTypes {
|
|||
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…
Reference in New Issue