diff options
author | unknown <paul@teton.kitebird.com> | 2003-11-21 12:35:33 -0600 |
---|---|---|
committer | unknown <paul@teton.kitebird.com> | 2003-11-21 12:35:33 -0600 |
commit | 840af67a0af5322c741aee9bb0928f4ca382f013 (patch) | |
tree | 5a182e6fea8838818b348c0c77593b46a2b6d1a8 /sql/slave.cc | |
parent | 920c30b43a3be8955db4e03cc393dd56ac8f5239 (diff) | |
download | mariadb-git-840af67a0af5322c741aee9bb0928f4ca382f013.tar.gz |
Change word order of a few PROCESSLIST messages to correspond
to order used in START SLAVE syntax.
sql/log.cc:
Change word order.
sql/slave.cc:
Change word order.
Diffstat (limited to 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index 329324efa3d..ec58e5215d8 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -1579,7 +1579,7 @@ static bool wait_for_relay_log_space(RELAY_LOG_INFO* rli) save_proc_info= thd->enter_cond(&rli->log_space_cond, &rli->log_space_lock, "\ -Waiting for the SQL slave thread to free enough relay log space"); +Waiting for the slave SQL thread to free enough relay log space"); while (rli->log_space_limit < rli->log_space_total && !(slave_killed=io_slave_killed(thd,mi)) && !rli->ignore_log_space_limit) @@ -2291,7 +2291,7 @@ int st_relay_log_info::wait_for_pos(THD* thd, String* log_name, DBUG_PRINT("info",("Waiting for master update")); const char* msg = thd->enter_cond(&data_cond, &data_lock, - "Waiting for the SQL slave thread to \ + "Waiting for the slave SQL thread to \ advance position"); /* We are going to pthread_cond_(timed)wait(); if the SQL thread stops it |