grammar: Fix some warnings caused by the antlr file

This shouldn't change anything for the end user.
This commit is contained in:
Martin Kleusberg
2017-01-14 13:51:40 +01:00
parent 95c1781fa8
commit 7822a2058f
3 changed files with 375 additions and 389 deletions
+1 -1
View File
@@ -358,7 +358,7 @@ columnconstraint
| (NOT)? NULL_T (conflictclause)?
| UNIQUE (conflictclause)?
| CHECK LPAREN expr RPAREN
| DEFAULT (signednumber | QUOTEDLITERAL | STRINGLITERAL | LPAREN expr RPAREN | literalvalue | ID)
| DEFAULT (QUOTEDLITERAL | LPAREN expr RPAREN | literalvalue | ID)
| COLLATE collationname
| foreignkeyclause)
{#columnconstraint = #([COLUMNCONSTRAINT, "COLUMNCONSTRAINT"], #columnconstraint);}