diff options
author | sasha@mysql.sashanet.com <> | 2000-11-22 00:23:31 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-11-22 00:23:31 -0700 |
commit | 46400961f77bc82c77b78afbf2cee8183a0b788f (patch) | |
tree | 8d0c9e3d92529b67e9be74ec479b21403222777d /sql/slave.h | |
parent | 74fbeabbf86068eaee44c58e7151532442fc96d2 (diff) | |
download | mariadb-git-46400961f77bc82c77b78afbf2cee8183a0b788f.tar.gz |
mysql-test/mysql-test-run
cleanup - remove unneeded daeamon restarts
sql/log_event.cc
fixed bug - do not confuse confused slaves even further if they try to
read less than LOG_EVENT_HEADER_LEN before the end of file
sql/mysqlbinlog.cc
give error if constructor fails
sql/mysqld.cc
--disconnect-slave-event-count for replication debugging
sql/slave.cc
--disconnect-slave-event-count
cleanup to remove unneeded sleeps when things go wrong - sleep only
when we have to
sql/slave.h
--disconnect-slave-event-count
test cases for ALTER TABLE ORDER BY and replication offset off by 22
confusion mystery bug (both pass)
Diffstat (limited to 'sql/slave.h')
-rw-r--r-- | sql/slave.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/slave.h b/sql/slave.h index 47cfa77a8e4..1d6be16ad34 100644 --- a/sql/slave.h +++ b/sql/slave.h @@ -94,6 +94,10 @@ extern bool do_table_inited, ignore_table_inited, wild_do_table_inited, wild_ignore_table_inited; extern bool table_rules_on; +#ifndef DBUG_OFF +extern int disconnect_slave_event_count ; +#endif + // the master variables are defaults read from my.cnf or command line extern uint master_port, master_connect_retry; extern my_string master_user, master_password, master_host, |