summaryrefslogtreecommitdiff
path: root/mysql-test/t/show_check.test
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2004-07-02 16:52:02 +0500
committerunknown <bar@mysql.com>2004-07-02 16:52:02 +0500
commitc345fc0f8270b241b6b4b893c10b1496bd086ce6 (patch)
tree3aa8883a52a23b8490e49189e28757ce519aa49e /mysql-test/t/show_check.test
parent6b577437b96f4bb57c80d89fbb8171390c2a2e95 (diff)
downloadmariadb-git-c345fc0f8270b241b6b4b893c10b1496bd086ce6.tar.gz
Bug #4374 SHOW TABLE STATUS FROM ignores collation_connection
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r--mysql-test/t/show_check.test8
1 files changed, 8 insertions, 0 deletions
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 `ä`;