diff options
author | Marko Mäkelä <marko.makela@oracle.com> | 2012-02-02 13:50:54 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@oracle.com> | 2012-02-02 13:50:54 +0200 |
commit | 567a422cf9f061fa96c4918445cdf016a540fec7 (patch) | |
tree | 8b734e52007cff29f232d2d651394090730c1ebe /mysql-test/suite/innodb/t/innodb-index.test | |
parent | 39100cd98440e3060e2ba2b6ec21b171728bd0eb (diff) | |
parent | e726580b6668956ca05c93cd2bd4ec5938314354 (diff) | |
download | mariadb-git-567a422cf9f061fa96c4918445cdf016a540fec7.tar.gz |
Merge mysql-5.1 to mysql-5.5.
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb-index.test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb-index.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/innodb-index.test b/mysql-test/suite/innodb/t/innodb-index.test index cb4527d6cb2..cea9055b873 100644 --- a/mysql-test/suite/innodb/t/innodb-index.test +++ b/mysql-test/suite/innodb/t/innodb-index.test @@ -119,6 +119,11 @@ show create table t12963823; # this file complete before dropping the table. By then, the purge thread # will have delt with the updates above. +# Bug#13654923 BOGUS DEBUG ASSERTION IN INDEX CREATION FOR ZERO-LENGTH RECORD +create table t1(a varchar(2) primary key) engine=innodb; +insert into t1 values(''); +create index t1a1 on t1(a(1)); +drop table t1; eval set global innodb_file_per_table=$per_table; eval set global innodb_file_format=$format; |