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

@ -176,8 +176,8 @@ entityWithJoins
* A root entity declaration in the 'from' clause, with optional identification variable
*/
fromRoot
: entityName variable? # RootEntity
| LATERAL? LEFT_PAREN subquery RIGHT_PAREN variable? # RootSubquery
: entityName variable? # RootEntity
| LEFT_PAREN subquery RIGHT_PAREN variable? # RootSubquery
;
/**