diff options
author | unknown <guilhem@mysql.com> | 2003-03-17 22:51:56 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2003-03-17 22:51:56 +0100 |
commit | 40c0b2c6c8b730dec9900c3829b7babf0a5b4772 (patch) | |
tree | 5d9a0eaa1fe759e9fccf20738544fe2eab9bbbe8 /mysql-test/r/rpl_relayspace.result | |
parent | 2103479670e60d1cce4166a4cd67b704bf4743da (diff) | |
download | mariadb-git-40c0b2c6c8b730dec9900c3829b7babf0a5b4772.tar.gz |
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. 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.
Diffstat (limited to 'mysql-test/r/rpl_relayspace.result')
-rw-r--r-- | mysql-test/r/rpl_relayspace.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/rpl_relayspace.result b/mysql-test/r/rpl_relayspace.result new file mode 100644 index 00000000000..5e552ef7400 --- /dev/null +++ b/mysql-test/r/rpl_relayspace.result @@ -0,0 +1,13 @@ +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 |