Fix for HHH-11340

(cherry picked from commit a2781e6654)
This commit is contained in:
Christian Beikov 2016-12-14 22:32:18 +01:00 committed by Gail Badner
parent bd1c5140da
commit aa3b6fbd9f
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ fromTable
// Write the table node (from fragment) and all the join fragments associated with it.
: #( a:FROM_FRAGMENT { out(a); } (tableJoin [ a ])* { fromFragmentSeparator(a); } )
| #( b:JOIN_FRAGMENT { out(b); } (tableJoin [ b ])* { fromFragmentSeparator(b); } )
| #( e:ENTITY_JOIN { out(e); } )
| #( e:ENTITY_JOIN { out(e); } (tableJoin [ e ])* { fromFragmentSeparator(e); } )
;
tableJoin [ AST parent ]