diff options
author | mysql@home.(none) <> | 2003-05-24 23:30:55 +0500 |
---|---|---|
committer | mysql@home.(none) <> | 2003-05-24 23:30:55 +0500 |
commit | f537e3adc68997a1c9b9c09a6152536fa0f88908 (patch) | |
tree | 54f9b1aaea0d9ddb2e18191e380cb732d630c24c | |
parent | 70559621f2d3f0fad250db723a8aed2104d8fd76 (diff) | |
download | mariadb-git-f537e3adc68997a1c9b9c09a6152536fa0f88908.tar.gz |
symlink.result:
Character set in this test results was displayed dispite the fact that the table has the same character set
-rw-r--r-- | mysql-test/r/symlink.result | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result index 1eb595eb2a9..3efc69d2f64 100644 --- a/mysql-test/r/symlink.result +++ b/mysql-test/r/symlink.result @@ -36,7 +36,7 @@ show create table t9; Table Create Table t9 CREATE TABLE `t9` ( `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', PRIMARY KEY (`a`) ) TYPE=MyISAM CHARSET=latin1 @@ -45,6 +45,8 @@ alter table t8 rename t7; rename table t7 to t9; drop table t1; 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 @@ -57,7 +59,7 @@ show create table test_mysqltest.t9; Table Create Table t9 CREATE TABLE `t9` ( `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', `d` int(11) NOT NULL default '0', PRIMARY KEY (`a`) |