mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
2a0f1d6132
on startup innodb is checking whether files "ib_logfileN" (for N from 1 to 100) exist, and whether they're readable. A non-existent file aborted the scan. A directory instead of a file made InnoDB to fail. Now it treats "directory exists" as "file doesn't exist".
12 lines
283 B
Text
12 lines
283 B
Text
#
|
|
# Bug#28867993: POSSIBLE ISSUE WITH MYSQL SERVER RESTART
|
|
#
|
|
|
|
source include/have_innodb.inc;
|
|
create table t1 (a int) engine=innodb;
|
|
insert t1 values (1),(2);
|
|
create database ib_logfile2;
|
|
source include/restart_mysqld.inc;
|
|
select * from t1;
|
|
drop table t1;
|
|
drop database ib_logfile2;
|