mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
7feec30939
it's just a suggestion anyway, not a bullet-proof check, let's not act as if it is
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
call mtr.add_suppression("InnoDB: The change buffer is corrupted");
|
|
call mtr.add_suppression("InnoDB: Plugin initialization aborted at srv0start.cc");
|
|
call mtr.add_suppression("Plugin 'InnoDB' init function returned error");
|
|
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed.");
|
|
call mtr.add_suppression("Fewer engines are enabled now than were before the crash");
|
|
CREATE TABLE t1(c TEXT, KEY(c(3072)))ENGINE=InnoDB CHARSET=latin1;
|
|
CREATE PROCEDURE dorepeat()
|
|
LOOP
|
|
INSERT INTO t1 VALUES ('abc');
|
|
UPDATE t1 SET c='cba';
|
|
END LOOP
|
|
|
|
|
connect con1,localhost,root,,,;
|
|
CALL dorepeat();
|
|
connection default;
|
|
# restart: --innodb_buffer_pool_size=5242880
|
|
DROP TABLE t1;
|
|
DROP PROCEDURE dorepeat;
|
|
#
|
|
# MDEV-30552 InnoDB recovery crashes when error
|
|
# handling scenario
|
|
#
|
|
SET DEBUG_DBUG="+d,ib_log_checkpoint_avoid_hard";
|
|
CREATE TABLE t1(f1 INT NOT NULL)ENGINE=InnoDB;
|
|
INSERT INTO t1 SELECT * FROM seq_1_to_65536;
|
|
# restart: with restart_parameters
|
|
# restart
|
|
SHOW CREATE TABLE t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`f1` int(11) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
|
|
DROP TABLE t1;
|