Commit 3640233f authored by serg@serg.mylan's avatar serg@serg.mylan

one more test should wait for WL#1324 (tablename to filename encoding)

non-ascii filenames work weird (e.g. on MacOSX)
parent 0174b666
...@@ -166,16 +166,24 @@ CREATE TABLE `a/b` (i INT); ...@@ -166,16 +166,24 @@ CREATE TABLE `a/b` (i INT);
#CREATE TABLE ```ab````cd``` (i INT); #CREATE TABLE ```ab````cd``` (i INT);
#SHOW CREATE TABLE ```ab````cd```; #SHOW CREATE TABLE ```ab````cd```;
#DROP TABLE ```ab````cd```; #DROP TABLE ```ab````cd```;
#
#CREATE TABLE ```a` (i INT); #CREATE TABLE ```a` (i INT);
#SHOW CREATE TABLE ```a`; #SHOW CREATE TABLE ```a`;
#DROP TABLE ```a`; #DROP TABLE ```a`;
#
SET sql_mode= 'ANSI_QUOTES'; #SET sql_mode= 'ANSI_QUOTES';
#
#CREATE TABLE """a" (i INT); #CREATE TABLE """a" (i INT);
#SHOW CREATE TABLE """a"; #SHOW CREATE TABLE """a";
#DROP 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 # end of part that must be uncommented when WL#1324 is done
######################################################### #########################################################
...@@ -306,10 +314,3 @@ delete from mysql.db ...@@ -306,10 +314,3 @@ delete from mysql.db
where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3'; where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3';
flush privileges; 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 ``;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment