diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-06-03 10:35:34 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-06-03 15:44:31 +0200 |
commit | 535b514e4bfc6bec2cdf046bc2bfebf770a37b7d (patch) | |
tree | b0e3c0a05879621075002e4e88b1a0b9e40c0276 /mysql-test/r/mysqlcheck.result | |
parent | 64569fa81de811b2c355c8d51bf4d3daa6b56444 (diff) | |
download | mariadb-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.result | 14 |
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; |