diff options
author | unknown <kostja@bodhi.local> | 2007-03-02 15:05:16 +0300 |
---|---|---|
committer | unknown <kostja@bodhi.local> | 2007-03-02 15:05:16 +0300 |
commit | f7f5f0064999d955f94e7f7b8710e92344fcff13 (patch) | |
tree | b8fda9df8fb908303e8cc7e28e2ef934b4f4b429 /sql/sql_yacc.yy | |
parent | b0e07932c65f70ff2571fa4045f464b4e3defcdc (diff) | |
download | mariadb-git-f7f5f0064999d955f94e7f7b8710e92344fcff13.tar.gz |
Freeze the number of conflicts. We should not introduce any more
conflicts without proper analysis and documentation of the nature of
the conflict.
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index f043d48b186..6b15ccfd729 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -389,6 +389,11 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize); %} %pure_parser /* We have threads */ +/* + Currently there is 251 shift/reduce conflict. We should not introduce + new conflicts any more. +*/ +%expect 251 %token END_OF_INPUT |