Commit fe3bf136 authored by Alexander Barkov's avatar Alexander Barkov

A cleanup for MDEV-15818 Fix shift-reduce conflicts in the new 10.3 syntax

Fixing PERIOD to PERIOD_SYM in the %left command.
parent b9cf26f7
......@@ -890,10 +890,10 @@ bool my_yyoverflow(short **a, YYSTYPE **b, size_t *yystacksize);
%parse-param { THD *thd }
%lex-param { THD *thd }
/*
Currently there are 72 shift/reduce conflicts.
Currently there are 68 shift/reduce conflicts.
We should not introduce new conflicts any more.
*/
%expect 72
%expect 68
/*
Comments for TOKENS.
......@@ -1731,7 +1731,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b, size_t *yystacksize);
and until NEXT_SYM / PREVIOUS_SYM.
*/
%left PREC_BELOW_IDENTIFIER_OPT_SPECIAL_CASE
%left TRANSACTION_SYM TIMESTAMP PERIOD SYSTEM
%left TRANSACTION_SYM TIMESTAMP PERIOD_SYM SYSTEM
/*
......
......@@ -282,10 +282,10 @@ bool my_yyoverflow(short **a, YYSTYPE **b, size_t *yystacksize);
%parse-param { THD *thd }
%lex-param { THD *thd }
/*
Currently there are 73 shift/reduce conflicts.
Currently there are 69 shift/reduce conflicts.
We should not introduce new conflicts any more.
*/
%expect 73
%expect 69
/*
Comments for TOKENS.
......@@ -1123,7 +1123,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b, size_t *yystacksize);
and until NEXT_SYM / PREVIOUS_SYM.
*/
%left PREC_BELOW_IDENTIFIER_OPT_SPECIAL_CASE
%left TRANSACTION_SYM TIMESTAMP PERIOD SYSTEM
%left TRANSACTION_SYM TIMESTAMP PERIOD_SYM SYSTEM
/*
......
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