summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlcheck.result
diff options
context:
space:
mode:
authorSergey Glukhov <Sergey.Glukhov@sun.com>2008-11-13 17:09:22 +0400
committerSergey Glukhov <Sergey.Glukhov@sun.com>2008-11-13 17:09:22 +0400
commitba453779b52be751406b29daa17eb6370359ece6 (patch)
treef739747a9a218411c97c17a2feb9052a9b84cc05 /mysql-test/r/mysqlcheck.result
parentfc27d0380a7a78f6bc33ba55dd3357b14e674893 (diff)
parentc049fc6bd62f9ef3b836a04be49ddc0fd0e4edc0 (diff)
downloadmariadb-git-ba453779b52be751406b29daa17eb6370359ece6.tar.gz
5.0-bugteam->5.1-bugteam automerge(bug#39541)
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r--mysql-test/r/mysqlcheck.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result
index b8fdd04d24a..959699b2103 100644
--- a/mysql-test/r/mysqlcheck.result
+++ b/mysql-test/r/mysqlcheck.result
@@ -98,6 +98,12 @@ drop view v_bug25347;
drop table t_bug25347;
drop database d_bug25347;
use test;
+create view v1 as select * from information_schema.routines;
+check table v1, information_schema.routines;
+Table Op Msg_type Msg_text
+test.v1 check status OK
+information_schema.routines check note The storage engine for the table doesn't support check
+drop view v1;
End of 5.0 tests
create table t1(a int);
create view v1 as select * from t1;