HHH-15613 remove 'lateral' from fromRoot rule

it means the same thing as 'join lateral', and is currently ignored by HQL
This commit is contained in:
Gavin King 2022-10-19 13:20:45 +02:00
parent 8f23e16a35
commit a42c52615e
1 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ entityWithJoins
*/
fromRoot
: entityName variable? # RootEntity
| LATERAL? LEFT_PAREN subquery RIGHT_PAREN variable? # RootSubquery
| LEFT_PAREN subquery RIGHT_PAREN variable? # RootSubquery
;
/**