diff options
author | sasha@mysql.sashanet.com <> | 2001-01-27 15:33:31 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-01-27 15:33:31 -0700 |
commit | 70f619856b0692c4f0df13065e54670bb56ec52d (patch) | |
tree | b2d2f6b0dd73eec46bc4a16978de2f24b148927a /sql/sql_repl.cc | |
parent | 5f6561ec885e200b7e5c6fd7907d8f3388d348ad (diff) | |
download | mariadb-git-70f619856b0692c4f0df13065e54670bb56ec52d.tar.gz |
fixed up lock counting code - Monty's suggestions
updated manual about table lock counter
fixed coredump in DROP DATABASE with long bogus name by non-root user
fixed bug in handling STOP immediately after ROTATE
added test case for buffer overrun on DROP DATABASE by non-root user
added test case for the STOP bug in replication
Diffstat (limited to 'sql/sql_repl.cc')
-rw-r--r-- | sql/sql_repl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc index 4f0112bac26..0598d906aa0 100644 --- a/sql/sql_repl.cc +++ b/sql/sql_repl.cc @@ -392,7 +392,7 @@ sweepstakes if you report the bug"; thd->mysys_var->current_mutex = log_lock; thd->mysys_var->current_cond = &COND_binlog_update; const char* proc_info = thd->proc_info; - thd->proc_info = "Waiting for update"; + thd->proc_info = "Slave connection: waiting for binlog update"; pthread_mutex_unlock(&thd->mysys_var->mutex); bool read_packet = 0, fatal_error = 0; |