diff options
author | unknown <gkodinov/kgeorge@magare.gmz> | 2007-07-26 18:33:05 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@magare.gmz> | 2007-07-26 18:33:05 +0300 |
commit | c7150fd814603bb12a686ea0857296b92282de1b (patch) | |
tree | 96e5d91de4beec582b888ed5c56b40b2fe05a46c /mysql-test/t/show_check.test | |
parent | 5cb265d8747314a350d343813edec9c1b94dff75 (diff) | |
download | mariadb-git-c7150fd814603bb12a686ea0857296b92282de1b.tar.gz |
Bug #30036: SHOW TABLE TYPES causes the debug client to crash
SHOW TABLE TYPES is a (to be deprecated) synonym for
SHOW STORAGE ENGINES.
Fixed to use the right schema table in addition to
issuing a warning.
mysql-test/r/show_check.result:
Bug #30036: test case
mysql-test/t/show_check.test:
Bug #30036: test case
sql/sql_yacc.yy:
Bug #30036: use the right schema table
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 09c0b08a3cd..f2dba49f455 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -977,4 +977,12 @@ DROP FUNCTION f1; DROP TABLE t1; DROP EVENT ev1; +# +# Bug #30036: SHOW TABLE TYPES causes the debug client to crash +# +--disable_result_log +SHOW TABLE TYPES; +--enable_result_log + + --echo End of 5.1 tests |