summaryrefslogtreecommitdiff
path: root/mysql-test/r/repair.result
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/r/repair.result
parenta1ad712152f3dcdbefe022dca8babab8c14d8817 (diff)
parent0014bdc7eef141dcd66930e853242b3be4960831 (diff)
downloadmariadb-git-ac286a9bc7dfffa9837ffc8807735f978a7f4192.tar.gz
Merge branch '5.5' into 10.0
Diffstat (limited to 'mysql-test/r/repair.result')
-rw-r--r--mysql-test/r/repair.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/repair.result b/mysql-test/r/repair.result
index c5faa27085e..79bc6d55c55 100644
--- a/mysql-test/r/repair.result
+++ b/mysql-test/r/repair.result
@@ -207,3 +207,10 @@ check table t1;
Table Op Msg_type Msg_text
test.t1 check status OK
drop table t1;
+create table t1 (a blob);
+create view v1 as select * from t1;
+repair view v1;
+Table Op Msg_type Msg_text
+test.v1 repair status OK
+drop view v1;
+drop table t1;