mirror of
https://github.com/MariaDB/server.git
synced 2025-09-06 19:08:06 +03:00
InnoDB in Debian uses utf8mb4 as default character set since version 10.0.20-2. This leads to major pain due to keys longer than 767 bytes. MariaDB 10.2 (and MySQL 5.7) introduced the setting innodb_default_row_format that is DYNAMIC by default. These versions also changed the default values of the parameters innodb_large_prefix=ON and innodb_file_format=Barracuda. This would allow longer column index prefixes to be created. The original purpose of these parameters was to allow InnoDB to be downgraded to MySQL 5.1, which is long out of support. Every InnoDB version since MySQL 5.5 does support operation with the relaxed limits. We backport the parameter innodb_default_row_format to MariaDB 10.1, but we will keep its default value at COMPACT. This allows MariaDB 10.1 to be configured so that CREATE TABLE is less likely to encounter a problem with the limitation: loose_innodb_large_prefix=ON loose_innodb_default_row_format=DYNAMIC (Note that the setting innodb_large_prefix was deprecated in MariaDB 10.2 and removed in MariaDB 10.3.) The only observable difference in the behaviour with the default settings should be that ROW_FORMAT=DYNAMIC tables can be created both in the system tablespace and in .ibd files, no matter what innodb_file_format has been assigned to. Unlike MariaDB 10.2, we are not changing the default value of innodb_file_format, so ROW_FORMAT=COMPRESSED tables cannot be created without changing the parameter.
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
SELECT @@innodb_strict_mode;
|
|
@@innodb_strict_mode
|
|
0
|
|
SELECT @@innodb_file_per_table;
|
|
@@innodb_file_per_table
|
|
1
|
|
SET @file_format = @@GLOBAL.innodb_file_format;
|
|
SET GLOBAL innodb_large_prefix=ON;
|
|
SET SQL_MODE=strict_all_tables;
|
|
CREATE TABLE tab0 (c1 VARCHAR(65530), KEY(c1(3073))) ENGINE=InnoDB ROW_FORMAT=COMPRESSED;
|
|
Warnings:
|
|
Warning 1071 Specified key was too long; max key length is 3072 bytes
|
|
SHOW CREATE TABLE tab0;
|
|
Table Create Table
|
|
tab0 CREATE TABLE `tab0` (
|
|
`c1` varchar(65530) DEFAULT NULL,
|
|
KEY `c1` (`c1`(3072))
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPRESSED
|
|
DROP TABLE tab0;
|
|
CREATE TABLE tab0 (c1 VARCHAR(65530), KEY(c1(3073))) ENGINE=InnoDB KEY_BLOCK_SIZE=2;
|
|
ERROR 42000: 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.
|
|
SET GLOBAL innodb_file_format=Antelope;
|
|
CREATE TABLE tab0(c1 INT,c2 LONGBLOB ) ENGINE=InnoDB ROW_FORMAT=Dynamic;
|
|
DROP TABLE tab0;
|
|
SET GLOBAL innodb_file_format=Default;
|
|
SELECT @@innodb_file_format;
|
|
@@innodb_file_format
|
|
Antelope
|
|
SET GLOBAL innodb_strict_mode=OFF;
|
|
SET GLOBAL innodb_strict_mode=Default;
|
|
SELECT @@innodb_strict_mode;
|
|
@@innodb_strict_mode
|
|
0
|
|
SET GLOBAL innodb_large_prefix=OFF;
|
|
SELECT @@innodb_large_prefix;
|
|
@@innodb_large_prefix
|
|
0
|
|
SET GLOBAL innodb_large_prefix=Default;
|
|
SELECT @@innodb_large_prefix;
|
|
@@innodb_large_prefix
|
|
0
|
|
SET GLOBAL innodb_file_format_max=Default;
|
|
SELECT @@innodb_file_format_max;
|
|
@@innodb_file_format_max
|
|
Antelope
|
|
CREATE TABLE tab1(c1 int ) ENGINE=InnoDB ROW_FORMAT=COMPRESSED;
|
|
Warnings:
|
|
Warning 1478 InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_format > Antelope.
|
|
Warning 1478 InnoDB: assuming ROW_FORMAT=COMPACT.
|
|
SELECT @@innodb_file_format_max;
|
|
@@innodb_file_format_max
|
|
Antelope
|
|
SET GLOBAL innodb_file_format_max=Default;
|
|
SET GLOBAL innodb_large_prefix=off;
|
|
SET GLOBAL innodb_file_format = @file_format;
|
|
DROP TABLE tab1;
|