mirror of
https://github.com/MariaDB/server.git
synced 2025-06-12 01:53:02 +03:00
innodb_page_size_small: A new set of combinations, for innodb_page_size up to 16k. In MariaDB 10.0, this does not make a difference, but in 10.1 and later, innodb_page_size would cover 32k and 64k, for which ROW_FORMAT=COMPRESSED is not available. Enable these combinations in a few InnoDB tests.
23 lines
715 B
Plaintext
23 lines
715 B
Plaintext
--source include/innodb_page_size_small.inc
|
|
|
|
let $file_format=`select @@innodb_file_format`;
|
|
let $file_per_table=`select @@innodb_file_per_table`;
|
|
|
|
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;
|
|
-- replace_result 8126 {checked_valid} 4030 {checked_valid} 1982 {checked_valid}
|
|
-- error ER_TOO_BIG_ROWSIZE
|
|
ALTER TABLE bug53591 ADD PRIMARY KEY(a(220));
|
|
-- replace_result 8126 {checked_valid} 4030 {checked_valid} 1982 {checked_valid}
|
|
SHOW WARNINGS;
|
|
|
|
DROP TABLE bug53591;
|
|
|
|
EVAL SET GLOBAL innodb_file_format=$file_format;
|
|
EVAL SET GLOBAL innodb_file_per_table=$file_per_table;
|