Commit b7e9bf91 authored by Alexander Barkov's avatar Alexander Barkov

MDEV-9169 BINLOG_SYM in keywords_sp causes shift/reduce conflicts

parent b7eaba47
...@@ -994,10 +994,10 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize); ...@@ -994,10 +994,10 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
%parse-param { THD *thd } %parse-param { THD *thd }
%lex-param { THD *thd } %lex-param { THD *thd }
/* /*
Currently there are 142 shift/reduce conflicts. Currently there are 121 shift/reduce conflicts.
We should not introduce new conflicts any more. We should not introduce new conflicts any more.
*/ */
%expect 142 %expect 121
/* /*
Comments for TOKENS. Comments for TOKENS.
...@@ -14220,6 +14220,7 @@ keyword: ...@@ -14220,6 +14220,7 @@ keyword:
| ASCII_SYM {} | ASCII_SYM {}
| BACKUP_SYM {} | BACKUP_SYM {}
| BEGIN_SYM {} | BEGIN_SYM {}
| BINLOG_SYM {}
| BYTE_SYM {} | BYTE_SYM {}
| CACHE_SYM {} | CACHE_SYM {}
| CHARSET {} | CHARSET {}
...@@ -14303,7 +14304,6 @@ keyword_sp: ...@@ -14303,7 +14304,6 @@ keyword_sp:
| AUTO_SYM {} | AUTO_SYM {}
| AVG_ROW_LENGTH {} | AVG_ROW_LENGTH {}
| AVG_SYM {} | AVG_SYM {}
| BINLOG_SYM {}
| BIT_SYM {} | BIT_SYM {}
| BLOCK_SYM {} | BLOCK_SYM {}
| BOOL_SYM {} | BOOL_SYM {}
......
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