Commit f537e3ad authored by mysql@home.(none)'s avatar mysql@home.(none)

symlink.result:

  Character set in this test results was displayed dispite the fact that the table has the same character set
parent 70559621
...@@ -36,7 +36,7 @@ show create table t9; ...@@ -36,7 +36,7 @@ show create table t9;
Table Create Table Table Create Table
t9 CREATE TABLE `t9` ( t9 CREATE TABLE `t9` (
`a` int(11) NOT NULL auto_increment, `a` int(11) NOT NULL auto_increment,
`b` char(16) character set latin1 NOT NULL default '', `b` char(16) NOT NULL default '',
`c` int(11) NOT NULL default '0', `c` int(11) NOT NULL default '0',
PRIMARY KEY (`a`) PRIMARY KEY (`a`)
) TYPE=MyISAM CHARSET=latin1 ) TYPE=MyISAM CHARSET=latin1
...@@ -45,6 +45,8 @@ alter table t8 rename t7; ...@@ -45,6 +45,8 @@ alter table t8 rename t7;
rename table t7 to t9; rename table t7 to t9;
drop table t1; drop table t1;
Got one of the listed errors Got one of the listed errors
Warnings:
Note 1008 Can't drop database 'test_mysqltest'. Database doesn't exist
Got one of the listed errors Got one of the listed errors
Got one of the listed errors Got one of the listed errors
Got one of the listed errors Got one of the listed errors
...@@ -57,7 +59,7 @@ show create table test_mysqltest.t9; ...@@ -57,7 +59,7 @@ show create table test_mysqltest.t9;
Table Create Table Table Create Table
t9 CREATE TABLE `t9` ( t9 CREATE TABLE `t9` (
`a` int(11) NOT NULL auto_increment, `a` int(11) NOT NULL auto_increment,
`b` char(16) character set latin1 NOT NULL default '', `b` char(16) NOT NULL default '',
`c` int(11) NOT NULL default '0', `c` int(11) NOT NULL default '0',
`d` int(11) NOT NULL default '0', `d` int(11) NOT NULL default '0',
PRIMARY KEY (`a`) PRIMARY KEY (`a`)
......
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