mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb_plugin / r / innodb_bug53591.result
blobdae9f0d64d0d4c1ffbf8be1f93c8ce409ce0a276
1 SET GLOBAL innodb_file_format='Barracuda';
2 SET GLOBAL innodb_file_per_table=on;
3 set old_alter_table=0;
4 CREATE TABLE bug53591(a text charset utf8 not null)
5 ENGINE=InnoDB KEY_BLOCK_SIZE=1;
6 ALTER TABLE bug53591 ADD PRIMARY KEY(a(220));
7 ERROR HY000: Too big row
8 SHOW WARNINGS;
9 Level   Code    Message
10 Error   139     Too big row
11 Error   1118    Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.
12 Error   1030    Got error 139 from storage engine
13 DROP TABLE bug53591;
14 SET GLOBAL innodb_file_format=Antelope;
15 SET GLOBAL innodb_file_per_table=0;