diff options
author | unknown <jimw@mysql.com> | 2005-06-09 18:03:18 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-06-09 18:03:18 -0700 |
commit | 72724bd84b935cbe1222d04a8f18d09aea0a72fc (patch) | |
tree | 6f4427fccc5c17ca64d82d7b5129a9acc7e7d50a /mysql-test/r | |
parent | a323d527d46b7c7791cb580331921b170bcf2c22 (diff) | |
parent | 6ae9eb48d517a096ef5de054b71706f9c5351e65 (diff) | |
download | mariadb-git-72724bd84b935cbe1222d04a8f18d09aea0a72fc.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-10566
into mysql.com:/home/jimw/my/mysql-4.1-clean
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/heap.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result index 29207a4ae98..53dec294ef8 100644 --- a/mysql-test/r/heap.result +++ b/mysql-test/r/heap.result @@ -291,3 +291,8 @@ a b 1 7 1 8 drop table t1; +create table t1 (c char(255), primary key(c(90))); +insert into t1 values ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"); +insert into t1 values ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"); +ERROR 23000: Duplicate entry 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl' for key 1 +drop table t1; |