Don't complain about a failure to write a log message if we were

simply killed.


sql/log.cc:
  Don't complain if were simply killed.
This commit is contained in:
unknown 2008-02-08 17:25:20 +03:00
parent d6391bec22
commit d157f5fd43

View File

@ -441,7 +441,7 @@ bool Log_to_csv_event_handler::
result= FALSE;
err:
if (result)
if (result && !thd->killed)
sql_print_error("Failed to write to mysql.general_log: %s",
error_handler.message());
@ -639,7 +639,7 @@ bool Log_to_csv_event_handler::
err:
thd->pop_internal_handler();
if (result)
if (result && !thd->killed)
sql_print_error("Failed to write to mysql.slow_log: %s",
error_handler.message());