diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-05-08 11:20:43 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-05-08 11:20:43 +0200 |
commit | ac286a9bc7dfffa9837ffc8807735f978a7f4192 (patch) | |
tree | 9fbabfe9d0e2207c640564b34b8c32865ed5f63f /mysql-test/t/repair.test | |
parent | a1ad712152f3dcdbefe022dca8babab8c14d8817 (diff) | |
parent | 0014bdc7eef141dcd66930e853242b3be4960831 (diff) | |
download | mariadb-git-ac286a9bc7dfffa9837ffc8807735f978a7f4192.tar.gz |
Merge branch '5.5' into 10.0
Diffstat (limited to 'mysql-test/t/repair.test')
-rw-r--r-- | mysql-test/t/repair.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/repair.test b/mysql-test/t/repair.test index 5b78a352863..a6df0dc5979 100644 --- a/mysql-test/t/repair.test +++ b/mysql-test/t/repair.test @@ -210,3 +210,12 @@ repair table t1 use_frm; select count(*) from t1; check table t1; drop table t1; + +# +# MDEV-8115 mysql_upgrade crashes the server with REPAIR VIEW +# +create table t1 (a blob); +create view v1 as select * from t1; +repair view v1; +drop view v1; +drop table t1; |