mirror of
https://github.com/MariaDB/server.git
synced 2025-11-10 23:02:54 +03:00
Before commit6112853cdain 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.
124 lines
2.6 KiB
Plaintext
124 lines
2.6 KiB
Plaintext
SET GLOBAL tx_isolation='REPEATABLE-READ';
|
|
CREATE TABLE bug56680(
|
|
a INT AUTO_INCREMENT PRIMARY KEY,
|
|
b CHAR(1),
|
|
c INT,
|
|
INDEX(b))
|
|
ENGINE=InnoDB STATS_PERSISTENT=0;
|
|
INSERT INTO bug56680 VALUES(0,'x',1);
|
|
BEGIN;
|
|
SELECT b FROM bug56680;
|
|
b
|
|
x
|
|
connect con1,localhost,root,,;
|
|
connection con1;
|
|
BEGIN;
|
|
UPDATE bug56680 SET b='X';
|
|
connection default;
|
|
SELECT b FROM bug56680;
|
|
b
|
|
x
|
|
SELECT * FROM bug56680;
|
|
a b c
|
|
1 x 1
|
|
connection con1;
|
|
ROLLBACK;
|
|
disconnect con1;
|
|
connection default;
|
|
SELECT b FROM bug56680;
|
|
b
|
|
x
|
|
SET GLOBAL tx_isolation='READ-UNCOMMITTED';
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
BEGIN;
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
connect con1,localhost,root,,;
|
|
connection con1;
|
|
BEGIN;
|
|
DELETE FROM bug56680 WHERE a=1;
|
|
INSERT INTO bug56680 VALUES(1,'X',1);
|
|
SELECT b FROM bug56680 LIMIT 3;
|
|
b
|
|
X
|
|
x
|
|
x
|
|
connection default;
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
CHECK TABLE bug56680;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680 check status OK
|
|
connection con1;
|
|
ROLLBACK;
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
CHECK TABLE bug56680;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680 check status OK
|
|
connection default;
|
|
disconnect con1;
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
CREATE TABLE bug56680_2(
|
|
a INT AUTO_INCREMENT PRIMARY KEY,
|
|
b VARCHAR(2) CHARSET latin1 COLLATE latin1_german2_ci,
|
|
c INT,
|
|
INDEX(b))
|
|
ENGINE=InnoDB STATS_PERSISTENT=0;
|
|
INSERT INTO bug56680_2 SELECT 0,_latin1 0xdf,c FROM bug56680;
|
|
BEGIN;
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 2;
|
|
HEX(b)
|
|
DF
|
|
DF
|
|
DELETE FROM bug56680_2 WHERE a=1;
|
|
INSERT INTO bug56680_2 VALUES(1,'SS',1);
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 3;
|
|
HEX(b)
|
|
5353
|
|
DF
|
|
DF
|
|
CHECK TABLE bug56680_2;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680_2 check status OK
|
|
ALTER TABLE bug56680_2 ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=1;
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 2;
|
|
HEX(b)
|
|
5353
|
|
DF
|
|
DELETE FROM bug56680_2 WHERE a=1;
|
|
INSERT INTO bug56680_2 VALUES(1,_latin1 0xdf,1);
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 3;
|
|
HEX(b)
|
|
DF
|
|
DF
|
|
DF
|
|
CHECK TABLE bug56680_2;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680_2 check status OK
|
|
# restart
|
|
CHECK TABLE bug56680_2;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680_2 check status OK
|
|
DROP TABLE bug56680_2;
|
|
DROP TABLE bug56680;
|