diff options
author | tnurnberg@mysql.com/sin.azundris.com <> | 2007-02-12 14:49:34 +0100 |
---|---|---|
committer | tnurnberg@mysql.com/sin.azundris.com <> | 2007-02-12 14:49:34 +0100 |
commit | 293352cbe4a8fb089189025c9d1ed194436ceec4 (patch) | |
tree | e1355353ed3b055f060245923d22a0c6497d5e20 /mysql-test/r | |
parent | 4211f6d7d7551f8d9fbb3fb54a9e88fdaf435aa4 (diff) | |
parent | ed82b013b8958a0b3ac78e2bc6b25c084988ac0d (diff) | |
download | mariadb-git-293352cbe4a8fb089189025c9d1ed194436ceec4.tar.gz |
Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into mysql.com:/home/tnurnberg/24660/50-24660
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/type_enum.result | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mysql-test/r/type_enum.result b/mysql-test/r/type_enum.result index f337d87eada..2683201e25e 100644 --- a/mysql-test/r/type_enum.result +++ b/mysql-test/r/type_enum.result @@ -1754,3 +1754,28 @@ t1 CREATE TABLE `t1` ( `f2` enum('') default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; +create table t1(russian enum('E','F','EF','FE') NOT NULL DEFAULT'E'); +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `russian` enum('E','F','EF','FE') NOT NULL default 'E' +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; +create table t1(denormal enum('E','F','E,F','F,E') NOT NULL DEFAULT'E'); +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `denormal` enum('E','F','E,F','F,E') NOT NULL default 'E' +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; +create table t1(russian_deviant enum('E','F','EF','F,E') NOT NULL DEFAULT'E'); +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `russian_deviant` enum('E','F','EF','F,E') NOT NULL default 'E' +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; +create table t1(exhausting_charset enum('ABCDEFGHIJKLMNOPQRSTUVWXYZ',' +
!"','#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~','xx\','yy\','zz')); +ERROR 42000: Field separator argument is not what is expected; check the manual +End of 4.1 tests |