summaryrefslogtreecommitdiff
path: root/mysql-test/t/repair.test
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2015-05-08 11:20:43 +0200
committerSergei Golubchik <serg@mariadb.org>2015-05-08 11:20:43 +0200
commitac286a9bc7dfffa9837ffc8807735f978a7f4192 (patch)
tree9fbabfe9d0e2207c640564b34b8c32865ed5f63f /mysql-test/t/repair.test
parenta1ad712152f3dcdbefe022dca8babab8c14d8817 (diff)
parent0014bdc7eef141dcd66930e853242b3be4960831 (diff)
downloadmariadb-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.test9
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;