mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
cad56fbaba
If InnoDB crash recovery was needed, the InnoDB function srv_start() would invoke extra validation, reading something from every InnoDB data file. This should be unnecessary now that MDEV-14717 made RENAME operations crash-safe inside InnoDB (which can be disabled in MariaDB 10.2 by setting innodb_safe_truncate=OFF). dict_check_sys_tables(): Skip tables that would be dropped by row_mysql_drop_garbage_tables(). Perform extra validation only if innodb_safe_truncate=OFF, innodb_force_recovery=0 and crash recovery was needed. dict_load_table_one(): Validate the root page of the table. In this way, we can deny access to corrupted or mismatching tables not only after crash recovery, but also after a clean shutdown.
52 lines
2.1 KiB
Text
52 lines
2.1 KiB
Text
call mtr.add_suppression("InnoDB: The page \\[page id: space=[1-9][0-9]*, page number=[1-9][0-9]*\\] in file '.*test.t1(new)?\\.ibd' cannot be decrypted\\.");
|
|
call mtr.add_suppression("failed to read or decrypt \\[page id: space=[1-9][0-9]*, page number=[1-9][0-9]*\\]");
|
|
call mtr.add_suppression("Couldn't load plugins from 'file_key_management");
|
|
call mtr.add_suppression("InnoDB: Tablespace for table \`test\`.\`t1\` is set as discarded\\.");
|
|
call mtr.add_suppression("InnoDB: Table `test`\\.`t1` is corrupted");
|
|
SET GLOBAL innodb_file_per_table = ON;
|
|
CREATE TABLE t1 (pk INT PRIMARY KEY, f VARCHAR(8)) ENGINE=InnoDB
|
|
ENCRYPTED=YES ENCRYPTION_KEY_ID=4;
|
|
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
SELECT * FROM t1;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist in engine
|
|
SHOW WARNINGS;
|
|
Level Code Message
|
|
Error 1932 Table 'test.t1' doesn't exist in engine
|
|
ALTER TABLE t1 ENGINE=InnoDB;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist in engine
|
|
SHOW WARNINGS;
|
|
Level Code Message
|
|
Error 1932 Table 'test.t1' doesn't exist in engine
|
|
OPTIMIZE TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 optimize Error Table 'test.t1' doesn't exist in engine
|
|
test.t1 optimize status Operation failed
|
|
SHOW WARNINGS;
|
|
Level Code Message
|
|
CHECK TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check Error Table 'test.t1' doesn't exist in engine
|
|
test.t1 check status Operation failed
|
|
SHOW WARNINGS;
|
|
Level Code Message
|
|
FLUSH TABLES t1 FOR EXPORT;
|
|
backup: t1
|
|
UNLOCK TABLES;
|
|
ALTER TABLE t1 DISCARD TABLESPACE;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist in engine
|
|
restore: t1 .ibd and .cfg files
|
|
ALTER TABLE t1 DISCARD TABLESPACE;
|
|
restore: t1 .ibd and .cfg files
|
|
ALTER TABLE t1 IMPORT TABLESPACE;
|
|
SHOW CREATE TABLE t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`pk` int(11) NOT NULL,
|
|
`f` varchar(8) DEFAULT NULL,
|
|
PRIMARY KEY (`pk`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 `ENCRYPTED`=YES `ENCRYPTION_KEY_ID`=4
|
|
RENAME TABLE t1 TO t1new;
|
|
ERROR HY000: Error on rename of './test/t1' to './test/t1new' (errno: 155 "The table does not exist in the storage engine")
|
|
ALTER TABLE t1 RENAME TO t1new;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist in engine
|
|
DROP TABLE t1;
|