~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb_mysql.result

  • Committer: Stewart Smith
  • Date: 2010-05-13 05:00:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1530.
  • Revision ID: stewart@flamingspork.com-20100513050009-8b9o9maoxn02e7g5
increase maximum size of an indexed column to 1023 from 767. This means on disk format changes (which we don't mind) as well as some test cases changes that were previously seeing the 767 limit. In one case, the test needed to be updated as it now hit the 3500 byte total index size limit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
639
639
drop table t1,t2;
640
640
create table t1(f1 varchar(800) not null, key(f1));
641
641
Warnings:
642
 
Warning 1071    Specified key was too long; max key length is 767 bytes
 
642
Warning 1071    Specified key was too long; max key length is 1023 bytes
643
643
insert into t1 values('aaa');
644
644
drop table t1;
645
645
CREATE TABLE t1 (a INT PRIMARY KEY, b INT, c FLOAT, KEY b(b)) ENGINE = INNODB;
944
944
insert into t1 values('aaa');
945
945
alter table t1 add index(a(1024));
946
946
Warnings:
947
 
Warning 1071    Specified key was too long; max key length is 767 bytes
 
947
Warning 1071    Specified key was too long; max key length is 1023 bytes
948
948
show create table t1;
949
949
Table   Create Table
950
950
t1      CREATE TABLE `t1` (
951
951
  `a` text,
952
 
  KEY `a` (`a`(191))
 
952
  KEY `a` (`a`(255))
953
953
) ENGINE=InnoDB
954
954
drop table t1;
955
955
CREATE TABLE t1 (