Commit 31b35118 authored by Alexander Barkov's avatar Alexander Barkov

Fixing a type-clash bison warning in keyword_directly_not_assignable

The warning was introduced by the patch that added
the keyword_sp_verb_clause rule.
parent 59350ce0
...@@ -14796,13 +14796,13 @@ keyword_directly_assignable: ...@@ -14796,13 +14796,13 @@ keyword_directly_assignable:
CREATE TRIGGER .. FOR EACH ROW FOLLOWS tr1 a:= 10; CREATE TRIGGER .. FOR EACH ROW FOLLOWS tr1 a:= 10;
*/ */
keyword_directly_not_assignable: keyword_directly_not_assignable:
CONTAINS_SYM { /* SP characteristic */ } CONTAINS_SYM { /* SP characteristic */ }
| LANGUAGE_SYM { /* SP characteristic */ } | LANGUAGE_SYM { /* SP characteristic */ }
| NO_SYM { /* SP characteristic */ } | NO_SYM { /* SP characteristic */ }
| CHARSET { /* SET CHARSET utf8; */ } | CHARSET { /* SET CHARSET utf8; */ }
| FOLLOWS_SYM { /* Conflicts with assignment in FOR EACH */} | FOLLOWS_SYM { /* Conflicts with assignment in FOR EACH */}
| PRECEDES_SYM { /* Conflicts with assignment in FOR EACH */} | PRECEDES_SYM { /* Conflicts with assignment in FOR EACH */}
| keyword_sp_verb_clause | keyword_sp_verb_clause { }
; ;
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment