mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
3b06415cb8
log_t::rename_resized(): Replaces create_log_file_rename() delete_log_files(): Moved to a separate function. Also invoked on a normal startup when the log is not being resized, to remove any garbage log files. create_log_file(): Remove the std::string& parameter. os_file_delete_if_exists_func() [_WIN32]: Do not retry DeleteFile() on ERROR_ACCESS_DENIED.
16 lines
450 B
Text
16 lines
450 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;
|
|
--disable_query_log
|
|
call mtr.add_suppression("InnoDB: Operating system error number ");
|
|
call mtr.add_suppression("InnoDB: Error number .* means ");
|
|
--enable_query_log
|
|
source include/restart_mysqld.inc;
|
|
select * from t1;
|
|
drop table t1;
|
|
drop database ib_logfile2;
|