HHH-2664 full join not working

This commit is contained in:
Brett Meyer 2013-05-15 00:35:12 -04:00
parent fca8f3c1af
commit 08215bad73
1 changed files with 2 additions and 0 deletions

View File

@ -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 );
}