diff options
author | lars@mysql.com <> | 2006-05-17 15:14:07 +0200 |
---|---|---|
committer | lars@mysql.com <> | 2006-05-17 15:14:07 +0200 |
commit | 7cbba084d73fe6712e3725271cb50a83e0655bd2 (patch) | |
tree | ebfe2d523ca4483b5f0bc6a4b0d768b11eb4ea39 /mysql-test/r/innodb_mysql.result | |
parent | 9f9a76eb6e9ec2918a8e03f6a5e77d28d5c013c0 (diff) | |
parent | 66766ad59627474a881d52381c81c6de926cff35 (diff) | |
download | mariadb-git-7cbba084d73fe6712e3725271cb50a83e0655bd2.tar.gz |
Merge mysql.com:/users/lthalmann/bkroot/mysql-5.1-new
into mysql.com:/users/lthalmann/bk/mysql-5.1-new-rpl
Diffstat (limited to 'mysql-test/r/innodb_mysql.result')
-rw-r--r-- | mysql-test/r/innodb_mysql.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/innodb_mysql.result b/mysql-test/r/innodb_mysql.result index 2a4e3555e3b..0c96899597e 100644 --- a/mysql-test/r/innodb_mysql.result +++ b/mysql-test/r/innodb_mysql.result @@ -1,4 +1,10 @@ drop table if exists t1,t2; +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; create table t1 ( c_id int(11) not null default '0', org_id int(11) default null, |