mariadb/mysql-test/suite/innodb/r/encryption_threads_shutdown.result
Sergei Golubchik 7feec30939 relax the XA recovery error
it's just a suggestion anyway, not a bullet-proof check,
let's not act as if it is
2024-11-05 14:00:52 -08:00

13 lines
587 B
Text

call mtr.add_suppression("Creating system tablespace with existing redo log file is not recommended.");
call mtr.add_suppression("InnoDB: Database creation was aborted");
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 t(a INT) ENGINE=InnoDB;
# Kill the server
# restart
SELECT * FROM t;
ERROR 42000: Unknown storage engine 'InnoDB'
# Kill the server
# restart
DROP TABLE t;