mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +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".
9 lines
160 B
Text
9 lines
160 B
Text
create table t1 (a int) engine=innodb;
|
|
insert t1 values (1),(2);
|
|
create database ib_logfile2;
|
|
select * from t1;
|
|
a
|
|
1
|
|
2
|
|
drop table t1;
|
|
drop database ib_logfile2;
|