mirror of
https://github.com/MariaDB/server.git
synced 2025-05-01 08:45:04 +03:00
There is only one redo log subsystem in InnoDB. Allocate the object statically, to avoid unnecessary dereferencing of the pointer. log_t::create(): Renamed from log_sys_init(). log_t::close(): Renamed from log_shutdown(). log_t::checkpoint_buf_ptr: Remove. Allocate log_t::checkpoint_buf statically.
14 lines
444 B
Plaintext
14 lines
444 B
Plaintext
--source include/have_innodb.inc
|
|
|
|
#
|
|
# MDEV-11705: InnoDB: Failing assertion: (&log_sys.mutex)->is_owned() if server started with innodb-scrub-log
|
|
#
|
|
|
|
create table t1(a int not null primary key auto_increment,
|
|
b varchar(200), c char(100), d varchar(150)) engine=innodb;
|
|
|
|
let $wait_condition= SELECT variable_value FROM information_schema.global_status WHERE variable_name = 'innodb_scrub_log';
|
|
--source include/wait_condition.inc
|
|
|
|
DROP TABLE t1;
|