1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-19534 Make innodb_checksum_algorithm=full_crc32 by default, and remove innodb_checksums

This commit is contained in:
Marko Mäkelä
2019-05-21 18:57:57 +03:00
parent 424dc49d41
commit 437da7bc54
11 changed files with 12 additions and 2133 deletions

View File

@@ -1,3 +1,5 @@
# Work around MDEV-19541
SET GLOBAL innodb_checksum_algorithm=crc32;
CREATE TABLE t1(a BIGINT PRIMARY KEY) ENGINE=InnoDB, ENCRYPTED=YES;
INSERT INTO t1 VALUES(1);
CREATE TABLE t2(a BIGINT PRIMARY KEY) ENGINE=InnoDB, ENCRYPTED=YES;

View File

@@ -12,6 +12,8 @@ call mtr.add_suppression("InnoDB: Table in tablespace \\d+ encrypted. However ke
--enable_query_log
let INNODB_PAGE_SIZE=`select @@innodb_page_size`;
--echo # Work around MDEV-19541
SET GLOBAL innodb_checksum_algorithm=crc32;
CREATE TABLE t1(a BIGINT PRIMARY KEY) ENGINE=InnoDB, ENCRYPTED=YES;
INSERT INTO t1 VALUES(1);
# Force a redo log checkpoint.