From c345fc0f8270b241b6b4b893c10b1496bd086ce6 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 2 Jul 2004 16:52:02 +0500 Subject: Bug #4374 SHOW TABLE STATUS FROM ignores collation_connection --- mysql-test/t/show_check.test | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'mysql-test/t/show_check.test') diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 3ff2605cff4..58694356943 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -304,3 +304,11 @@ where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3'; delete from mysql.db where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3'; flush privileges; + +#Bug #4374 SHOW TABLE STATUS FROM ignores collation_connection +set names latin1; +create database `ä`; +create table `ä`.`ä` (a int) engine=heap; +--replace_column 7 # 8 # 9 # +show table status from `ä` LIKE 'ä'; +drop database `ä`; -- cgit v1.2.1