mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
e581396b7a
Before commit6112853cda
in MySQL 4.1.1 introduced the parameter innodb_file_per_table, all InnoDB data was written to the InnoDB system tablespace (often named ibdata1). A serious design problem is that once the system tablespace has grown to some size, it cannot shrink even if the data inside it has been deleted. There are also other design problems, such as the server hang MDEV-29930 that should only be possible when using innodb_file_per_table=0 and innodb_undo_tablespaces=0 (storing both tables and undo logs in the InnoDB system tablespace). The parameter innodb_change_buffering was deprecated in commitb5852ffbee
. Starting with commitbaf276e6d4
(MDEV-19229) the number of innodb_undo_tablespaces can be increased, so that the undo logs can be moved out of the system tablespace of an existing installation. If all these things (tables, undo logs, and the change buffer) are removed from the InnoDB system tablespace, the only variable-size data structure inside it is the InnoDB data dictionary. DDL operations on .ibd files was optimized in commit86dc7b4d4c
(MDEV-24626). That should have removed any thinkable performance advantage of using innodb_file_per_table=0. Since there should be no benefit of setting innodb_file_per_table=0, the parameter should be deprecated. Starting with MySQL 5.6 and MariaDB Server 10.0, the default value is innodb_file_per_table=1.
36 lines
991 B
Text
36 lines
991 B
Text
-- source include/have_innodb.inc
|
|
-- source include/not_embedded.inc
|
|
|
|
#
|
|
# Bug #68148: drop index on a foreign key column leads to missing table
|
|
# MDEV-8845: Table disappear after modifying FK
|
|
#
|
|
|
|
CREATE TABLE ref_table1 (id int(11) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
|
|
|
|
CREATE TABLE ref_table2 (id int(11) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
|
|
|
|
CREATE TABLE `main` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`ref_id1` int(11) NOT NULL,
|
|
`ref_id2` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `idx_1` (`ref_id1`,`ref_id2`),
|
|
KEY `FK_set_out_analysis_route_id` (`ref_id2`),
|
|
CONSTRAINT `FK_1` FOREIGN KEY (`ref_id1`) REFERENCES `ref_table1` (`id`) ,
|
|
CONSTRAINT `FK_2` FOREIGN KEY (`ref_id2`) REFERENCES `ref_table2` (`id`)
|
|
) ENGINE=InnoDB;
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
|
|
DROP INDEX `idx_1` ON `main`;
|
|
SHOW TABLES;
|
|
|
|
--source include/restart_mysqld.inc
|
|
|
|
ALTER TABLE `main` ADD INDEX `idx_1` (`ref_id1`);
|
|
SHOW CREATE TABLE `main`;
|
|
|
|
DROP TABLE main, ref_table1, ref_table2;
|
|
|
|
|