summaryrefslogtreecommitdiff
path: root/mysql-test/r/innodb_mysql.result
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2006-06-10 20:33:50 +0200
committermsvensson@neptunus.(none) <>2006-06-10 20:33:50 +0200
commit2c538f6cde576b8b42ad3671b627434365f2afea (patch)
treea19132f98ae7c58aa6233f7efa53dcbe6b4d2cdc /mysql-test/r/innodb_mysql.result
parenta94ad6a2e3bc6c3fa577e7ebe301ec28f9f1e5f9 (diff)
parent0e9798d3d2b1b59c7e88a660d191982ecf9f1e68 (diff)
downloadmariadb-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.result6
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;