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:
parent
d6391bec22
commit
d157f5fd43
@ -441,7 +441,7 @@ bool Log_to_csv_event_handler::
|
|||||||
result= FALSE;
|
result= FALSE;
|
||||||
|
|
||||||
err:
|
err:
|
||||||
if (result)
|
if (result && !thd->killed)
|
||||||
sql_print_error("Failed to write to mysql.general_log: %s",
|
sql_print_error("Failed to write to mysql.general_log: %s",
|
||||||
error_handler.message());
|
error_handler.message());
|
||||||
|
|
||||||
@ -639,7 +639,7 @@ bool Log_to_csv_event_handler::
|
|||||||
err:
|
err:
|
||||||
thd->pop_internal_handler();
|
thd->pop_internal_handler();
|
||||||
|
|
||||||
if (result)
|
if (result && !thd->killed)
|
||||||
sql_print_error("Failed to write to mysql.slow_log: %s",
|
sql_print_error("Failed to write to mysql.slow_log: %s",
|
||||||
error_handler.message());
|
error_handler.message());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user