mirror of
https://github.com/MariaDB/server.git
synced 2025-04-11 01:35:33 +02:00

Historically, InnoDB split the redo log into at least 2 files. MDEV-12061 allowed the minimum to be innodb_log_files_in_group=1, but it kept the default at innodb_log_files_in_group=2. Because performance seems to be slightly better with only one log file, and because implementing an append-only variant of the log would require a single file, let us define the default to be 1, and have innodb_log_file_size=96M, to retain the same default total size.
20 lines
513 B
Text
20 lines
513 B
Text
#
|
|
# MDEV-8021 "InnoDB: Tablespace id 4 encrypted but encryption service not available. Can't continue opening tablespace" on server restart when there are encrypted tables
|
|
#
|
|
|
|
--source include/have_innodb.inc
|
|
--source include/have_file_key_management_plugin.inc
|
|
|
|
let $datadir=`select @@datadir`;
|
|
--source include/shutdown_mysqld.inc
|
|
|
|
--remove_file $datadir/ib_logfile0
|
|
--remove_file $datadir/ibdata1
|
|
|
|
--source include/start_mysqld.inc
|
|
|
|
create table t1 (a int);
|
|
|
|
--source include/restart_mysqld.inc
|
|
|
|
drop table t1;
|