diff options
author | guilhem@mysql.com <> | 2003-12-04 22:42:18 +0100 |
---|---|---|
committer | guilhem@mysql.com <> | 2003-12-04 22:42:18 +0100 |
commit | dd2303ce072f185b02b50b58d841c70687f41bf9 (patch) | |
tree | ca8ac74120edb9722c802f5ad77a4b4ecdae17d2 /sql/repl_failsafe.cc | |
parent | ae67b97c4bd6a94ba1d5fe38e2625fb4a0f0a274 (diff) | |
download | mariadb-git-dd2303ce072f185b02b50b58d841c70687f41bf9.tar.gz |
- Fix for BUG#1858 "SQL-Thread stops working when using optimize table":
we change THD::system_thread from a 'bool' to a bitmap to be able to
distinguish between delayed-insert threads and slave threads.
- Fix for BUG#1701 "Update from multiple tables" (one line in sql_parse.cc,
plus a new test rpl_multi_update.test). That's just adding an initialization.
Diffstat (limited to 'sql/repl_failsafe.cc')
-rw-r--r-- | sql/repl_failsafe.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/repl_failsafe.cc b/sql/repl_failsafe.cc index 8deb23e8586..6b91d81b487 100644 --- a/sql/repl_failsafe.cc +++ b/sql/repl_failsafe.cc @@ -52,6 +52,13 @@ static Slave_log_event* find_slave_event(IO_CACHE* log, const char* log_file_name, char* errmsg); +/* + All of the functions defined in this file which are not used (the ones to + handle failsafe) are not used; their code has not been updated for more than + one year now so should be considered as BADLY BROKEN. Do not enable it. + The used functions (to handle LOAD DATA FROM MASTER, plus some small + functions like register_slave()) are working. +*/ static int init_failsafe_rpl_thread(THD* thd) { |