diff options
author | Jon Olav Hauglid <jon.hauglid@oracle.com> | 2012-09-11 16:29:51 +0200 |
---|---|---|
committer | Jon Olav Hauglid <jon.hauglid@oracle.com> | 2012-09-11 16:29:51 +0200 |
commit | 8c641484dc43571b16edeb9780a587472fc1f14b (patch) | |
tree | 734c8ecd1bddeee2d5b287f4e0052d63383f6742 /mysql-test/t/show_check.test | |
parent | aa624daf8be6d826398020913f859adcf6159f2c (diff) | |
download | mariadb-git-8c641484dc43571b16edeb9780a587472fc1f14b.tar.gz |
WL#6454: Deprecate SHOW AUTHORS and SHOW CONTRIBUTORS
Added deprecation warning for SHOW AUTHORS and
SHOW CONTRIBUTORS.
This is the 5.5 version of the patch.
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 3a38b85f1ae..c2edef87d41 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -1371,3 +1371,17 @@ SELECT RELEASE_LOCK('t'); --connection default SET NAMES latin1; + +--echo # +--echo # WL#6454: Deprecate SHOW AUTHORS and SHOW CONTRIBUTORS +--echo # + +--disable_result_log +SHOW AUTHORS; +--enable_result_log +SHOW WARNINGS; + +--disable_result_log +SHOW CONTRIBUTORS; +--enable_result_log +SHOW WARNINGS; |