summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlcheck.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2015-06-03 10:35:34 +0200
committerSergei Golubchik <serg@mariadb.org>2015-06-03 15:44:31 +0200
commit535b514e4bfc6bec2cdf046bc2bfebf770a37b7d (patch)
treeb0e3c0a05879621075002e4e88b1a0b9e40c0276 /mysql-test/r/mysqlcheck.result
parent64569fa81de811b2c355c8d51bf4d3daa6b56444 (diff)
downloadmariadb-git-535b514e4bfc6bec2cdf046bc2bfebf770a37b7d.tar.gz
MDEV-8123 mysqlcheck: new --process-views option conflicts with --quick, --extended and such
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r--mysql-test/r/mysqlcheck.result14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result
index 40ac4d82461..f57216310af 100644
--- a/mysql-test/r/mysqlcheck.result
+++ b/mysql-test/r/mysqlcheck.result
@@ -316,3 +316,17 @@ CREATE TABLE test.`t.1` (id int);
mysqlcheck test t.1
test.t.1 OK
drop table test.`t.1`;
+create view v1 as select 1;
+mysqlcheck --process-views test
+test.v1 OK
+mysqlcheck --process-views --extended test
+test.v1 OK
+mysqlcheck --process-views --fast test
+mysqlcheck --process-views --quick test
+test.v1 OK
+mysqlcheck --process-views --check-only-changed test
+mysqlcheck --process-views --medium-check test
+test.v1 OK
+mysqlcheck --process-views --check-upgrade test
+test.v1 OK
+drop view v1;