diff options
author | unknown <bar@mysql.com> | 2004-07-02 16:52:02 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-07-02 16:52:02 +0500 |
commit | c345fc0f8270b241b6b4b893c10b1496bd086ce6 (patch) | |
tree | 3aa8883a52a23b8490e49189e28757ce519aa49e /mysql-test/r/show_check.result | |
parent | 6b577437b96f4bb57c80d89fbb8171390c2a2e95 (diff) | |
download | mariadb-git-c345fc0f8270b241b6b4b893c10b1496bd086ce6.tar.gz |
Bug #4374 SHOW TABLE STATUS FROM ignores collation_connection
Diffstat (limited to 'mysql-test/r/show_check.result')
-rw-r--r-- | mysql-test/r/show_check.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/show_check.result b/mysql-test/r/show_check.result index 87691e864c5..8aa071b3ca1 100644 --- a/mysql-test/r/show_check.result +++ b/mysql-test/r/show_check.result @@ -400,3 +400,10 @@ 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; +set names latin1; +create database `ä`; +create table `ä`.`ä` (a int) engine=heap; +show table status from `ä` LIKE 'ä'; +Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment +ä HEAP 9 Fixed 0 5 # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL +drop database `ä`; |