diff options
author | unknown <monty@donna.mysql.com> | 2000-10-11 01:18:03 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-10-11 01:18:03 +0300 |
commit | da2c52f1fe73f1fca8d95875957b4bcb4bd84a4b (patch) | |
tree | b2c67cc4d23c305090ee2d98ec39d9ec6b034a3c /sql/sql_yacc.yy | |
parent | e07d0930f4ecadf576c1dca76df3caab83ba04ae (diff) | |
parent | 3b5f8e5ee4ca4f78c2701d819f41820391de8b1a (diff) | |
download | mariadb-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.yy | 5 |
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; } |