mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
dc265dc4a1
This is a redo for 5.5 Added 'innodb_file_format_max' as variable to ignore change to. Tests that had to restore this amended Two tests assumed it to be Antelope, make sure these run on a freshly started server
15 lines
611 B
Text
15 lines
611 B
Text
SET GLOBAL innodb_file_format='Barracuda';
|
|
SET GLOBAL innodb_file_per_table=on;
|
|
set old_alter_table=0;
|
|
CREATE TABLE bug53591(a text charset utf8 not null)
|
|
ENGINE=InnoDB KEY_BLOCK_SIZE=1;
|
|
ALTER TABLE bug53591 ADD PRIMARY KEY(a(220));
|
|
ERROR HY000: Too big row
|
|
SHOW WARNINGS;
|
|
Level Code Message
|
|
Error 139 Too big row
|
|
Error 1118 Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. You have to change some columns to TEXT or BLOBs
|
|
Error 1030 Got error 139 from storage engine
|
|
DROP TABLE bug53591;
|
|
SET GLOBAL innodb_file_format=Antelope;
|
|
SET GLOBAL innodb_file_per_table=0;
|