You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just found typo of <multset value expression> or <multiset value expression> .
In sql-2003-2.bnf,the below lines uses <multset value expression> but no definition in BNF. <multiset element reference> ::= ELEMENT <left paren> <multset value expression> <right paren>
But there is <multiset value expression> definition in BNF. <multiset value expression> ::= <multiset term> | <multiset value expression> MULTISET UNION [ ALL | DISTINCT ] <multiset term> | <multiset value expression> MULTISET EXCEPT [ ALL | DISTINCT ] <multiset term>
The text was updated successfully, but these errors were encountered:
It must be a typo for . I scanned the repo and there is only 1 reference to multset, in sql-2003-2.bnf, and 1 on the corresponding sql-2003-2.bnf.html.
Are you able to edit the latter file too?
I just found typo of <multset value expression> or <multiset value expression> .
In sql-2003-2.bnf,the below lines uses <multset value expression> but no definition in BNF.
<multiset element reference> ::=
ELEMENT <left paren> <multset value expression> <right paren>
But there is <multiset value expression> definition in BNF.
<multiset value expression> ::=
<multiset term>
| <multiset value expression> MULTISET UNION [ ALL | DISTINCT ] <multiset term>
| <multiset value expression> MULTISET EXCEPT [ ALL | DISTINCT ] <multiset term>
The text was updated successfully, but these errors were encountered: