mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
9930cb22c7
Do not init encryption threads if shutdown is in progress.
12 lines
501 B
Text
12 lines
501 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.");
|
|
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;
|