1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Minor cleanup of innodb.innodb-change-buffer-recovery

This should be a non-functional change. I was unable to repeat
MDEV-11626 innodb.innodb-change-buffer-recovery fails for xtradb
and cannot determine the reason for the failure without having access
to the files.

The repeatability of MDEV-11626 should not be affected by these changes.
This commit is contained in:
Marko Mäkelä
2017-01-09 09:12:32 +02:00
parent 384f4d1e36
commit 59ea6456c3
2 changed files with 10 additions and 18 deletions

View File

@ -8,7 +8,7 @@ a INT AUTO_INCREMENT PRIMARY KEY,
b CHAR(1),
c INT,
INDEX(b))
ENGINE=InnoDB;
ENGINE=InnoDB STATS_PERSISTENT=0;
INSERT INTO t1 VALUES(0,'x',1);
INSERT INTO t1 SELECT 0,b,c FROM t1;
INSERT INTO t1 SELECT 0,b,c FROM t1;