Closed
Description
The current syntax allows only a single level of parentheses around joined tables, but the SQL:2016 syntax is:
<table primary> ::=
[...]
| <parenthesized joined table>
<parenthesized joined table> ::=
<left paren> <parenthesized joined table> <right paren>
| <left paren> <joined table> <right paren>
[...]
A simple syntax change allows this (I'll push a pull request shortly).