Fix for HHH-11340

This commit is contained in:
Christian Beikov 2016-12-14 22:32:18 +01:00 committed by Andrea Boriero
parent 7dc7fbe27f
commit a2781e6654
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,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 ]