mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
40c0b2c6c8
a deadlock between I/O and SQL threads in replication when relay_log_space is too small. This fixes bug #79. sql/log.cc: New variable rli->ignore_log_space_limit to resolve a deadlock between I/O and SQL threads in replication when relay_log_space is too small. sql/slave.cc: New variable rli->ignore_log_space_limit to resolve a deadlock between I/O and SQL threads in replication when relay_log_space is too small. sql/slave.h: New variable rli->ignore_log_space_limit to resolve a deadlock between I/O and SQL threads in replication when relay_log_space is too small. sql/sql_repl.cc: New variable rli->ignore_log_space_limit to resolve a deadlock between I/O and SQL threads in replication when relay_log_space is too small.
13 lines
313 B
Text
13 lines
313 B
Text
slave stop;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
slave start;
|
|
stop slave;
|
|
create table t1 (a int);
|
|
reset slave;
|
|
start slave;
|
|
select master_pos_wait('master-bin.001',5000,45)=-1;
|
|
master_pos_wait('master-bin.001',5000,45)=-1
|
|
0
|