diff options
author | unknown <sergefp@mysql.com> | 2005-10-29 02:36:57 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-10-29 02:36:57 +0400 |
commit | 2f6bb04f9e952970528f43124942e3b533e7969a (patch) | |
tree | 45ae3ddd001a6f4023a0be5975954ff46ec00ea3 /mysql-test/r/create.result | |
parent | ed9a29f1573a6ad9c0b8a934b957cf43ea7d5ffd (diff) | |
parent | d5bb660640c9cb968469f38e2fa5a971782cf254 (diff) | |
download | mariadb-git-2f6bb04f9e952970528f43124942e3b533e7969a.tar.gz |
4.1->5.0 merge
include/config-netware.h:
Merged
innobase/row/row0ins.c:
BUG#10511: Per alexi's instructions, the changes in innobase/row/row0ins.c are not
propagated to 5.x
mysql-test/r/create.result:
Auto Merged
mysql-test/t/create.test:
Auto Merged
sql/field.cc:
Auto Merged
sql/field.h:
Manual Merge
sql/sql_table.cc:
Auto Merged
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 3e7c9d6eb4a..c0c6acd2c70 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -641,3 +641,14 @@ create table if not exists t1 (a int); Warnings: Note 1050 Table 't1' already exists drop table t1; +create table t1 ( +a varchar(112) charset utf8 collate utf8_bin not null, +primary key (a) +) select 'test' as a ; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` varchar(112) character set utf8 collate utf8_bin NOT NULL default '', + PRIMARY KEY (`a`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; |