diff options
author | unknown <brian@zim.(none)> | 2006-02-24 23:31:57 -0800 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2006-02-24 23:31:57 -0800 |
commit | 8f4cec206ba6ec44f1e1e84f4b0842f585039ace (patch) | |
tree | 0bd3c601811cadd34d3d22b839c15946d7a547cd /mysql-test/r/create.result | |
parent | e737b00134386098f2de170772038b8c49b76d0c (diff) | |
parent | 6716fc050ec8bfdd19ff161b4249c6a49f90c2c7 (diff) | |
download | mariadb-git-8f4cec206ba6ec44f1e1e84f4b0842f585039ace.tar.gz |
Merge zim.(none):/home/brian/mysql/mysql-5.0
into zim.(none):/home/brian/mysql/dep-5.1
mysql-test/r/create.result:
Auto merged
mysql-test/t/create.test:
Auto merged
sql/sql_table.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 25ceafd2c69..8228a7d904c 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -770,3 +770,9 @@ t1 CREATE TABLE `t1` ( `i` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=4294967295 drop table t1; +create table t1(f1 varchar(800) binary not null, key(f1)) engine = innodb +character set utf8 collate utf8_general_ci; +Warnings: +Warning 1071 Specified key was too long; max key length is 765 bytes +insert into t1 values('aaa'); +drop table t1; |