diff options
author | unknown <serg@serg.mylan> | 2004-07-26 21:20:59 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-07-26 21:20:59 +0200 |
commit | 5ecc5a2cff4c607030acc5190b0f786a08d000e2 (patch) | |
tree | 257d21f57ed2355cb9a6f76f026227e090cfcc47 /mysql-test/t/show_check.test | |
parent | 2da4d9c3cd07136712534953fe8685014ca32c62 (diff) | |
download | mariadb-git-5ecc5a2cff4c607030acc5190b0f786a08d000e2.tar.gz |
one more test should wait for WL#1324 (tablename to filename encoding)
non-ascii filenames work weird (e.g. on MacOSX)
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index ac0c9a43010..d69ce8ac75a 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -166,16 +166,24 @@ CREATE TABLE `a/b` (i INT); #CREATE TABLE ```ab````cd``` (i INT); #SHOW CREATE TABLE ```ab````cd```; #DROP TABLE ```ab````cd```; - +# #CREATE TABLE ```a` (i INT); #SHOW CREATE TABLE ```a`; #DROP TABLE ```a`; - -SET sql_mode= 'ANSI_QUOTES'; - +# +#SET sql_mode= 'ANSI_QUOTES'; +# #CREATE TABLE """a" (i INT); #SHOW CREATE TABLE """a"; #DROP TABLE """a"; +# +#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 `ä`; ######################################################### # end of part that must be uncommented when WL#1324 is done ######################################################### @@ -306,10 +314,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 `ä`; |