Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpz committed Aug 9, 2019
1 parent 9bea1e3 commit 30619d8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt
Original file line number Diff line number Diff line change
Expand Up @@ -1728,13 +1728,15 @@ FromItem SubJoin():
{
FromItem fromItem = null;
Join join = null;
List joinList = null;
SubJoin subJoin = new SubJoin();
List<Join> joinList = null;
}
{
fromItem=FromItem() { subJoin.setLeft(fromItem); }
joinList=SubJoinsList() { subJoin.setJoinList(joinList); }
fromItem=FromItem()
joinList=SubJoinsList()
{
SubJoin subJoin = new SubJoin();
subJoin.setLeft(fromItem);
subJoin.setJoinList(joinList);
return subJoin;
}
}
Expand All @@ -1757,7 +1759,6 @@ List SubJoinsList():
{

(join=JoinerExpression() { joinsList.add(join); })+

{ return joinsList; }
}

Expand Down

0 comments on commit 30619d8

Please sign in to comment.