diff options
author | msvensson@neptunus.(none) <> | 2006-06-10 20:33:50 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-06-10 20:33:50 +0200 |
commit | 2c538f6cde576b8b42ad3671b627434365f2afea (patch) | |
tree | a19132f98ae7c58aa6233f7efa53dcbe6b4d2cdc /mysql-test/r/innodb_mysql.result | |
parent | a94ad6a2e3bc6c3fa577e7ebe301ec28f9f1e5f9 (diff) | |
parent | 0e9798d3d2b1b59c7e88a660d191982ecf9f1e68 (diff) | |
download | mariadb-git-2c538f6cde576b8b42ad3671b627434365f2afea.tar.gz |
Merge bk-internal:/home/bk/mysql-5.1
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint
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 918f1c2c7c5..d79f957559c 100644 --- a/mysql-test/r/innodb_mysql.result +++ b/mysql-test/r/innodb_mysql.result @@ -326,3 +326,9 @@ ERROR 23000: Duplicate entry '1' for key 'PRIMARY' SELECT * from t2; a b drop table 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; |