summaryrefslogtreecommitdiff
path: root/sql/sql_yacc.yy
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2000-10-11 01:18:03 +0300
committerunknown <monty@donna.mysql.com>2000-10-11 01:18:03 +0300
commitda2c52f1fe73f1fca8d95875957b4bcb4bd84a4b (patch)
treeb2c67cc4d23c305090ee2d98ec39d9ec6b034a3c /sql/sql_yacc.yy
parente07d0930f4ecadf576c1dca76df3caab83ba04ae (diff)
parent3b5f8e5ee4ca4f78c2701d819f41820391de8b1a (diff)
downloadmariadb-git-da2c52f1fe73f1fca8d95875957b4bcb4bd84a4b.tar.gz
merge
mysys/charset.c: Auto merged BitKeeper/etc/logging_ok: Auto merged
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r--sql/sql_yacc.yy5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy
index 1fde60accea..ae1296153e5 100644
--- a/sql/sql_yacc.yy
+++ b/sql/sql_yacc.yy
@@ -1134,8 +1134,13 @@ repair:
opt_mi_check_type:
/* empty */ { Lex->check_opt.flags = T_MEDIUM; }
| TYPE_SYM EQ mi_check_types {}
+ | mi_check_types {}
mi_check_types:
+ mi_check_type {}
+ | mi_check_type mi_check_types {}
+
+mi_check_type:
QUICK { Lex->check_opt.quick = 1; }
| FAST_SYM { Lex->check_opt.flags|= T_FAST; }
| EXTENDED_SYM { Lex->check_opt.flags|= T_EXTEND; }