HHH-2664 full join not working
This commit is contained in:
parent
fca8f3c1af
commit
08215bad73
|
@ -94,6 +94,8 @@ public class JoinProcessor implements SqlTokenTypes {
|
||||||
return JoinType.INNER_JOIN;
|
return JoinType.INNER_JOIN;
|
||||||
case RIGHT_OUTER:
|
case RIGHT_OUTER:
|
||||||
return JoinType.RIGHT_OUTER_JOIN;
|
return JoinType.RIGHT_OUTER_JOIN;
|
||||||
|
case FULL:
|
||||||
|
return JoinType.FULL_JOIN;
|
||||||
default:
|
default:
|
||||||
throw new AssertionFailure( "undefined join type " + astJoinType );
|
throw new AssertionFailure( "undefined join type " + astJoinType );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue