Commit 33be6a3a authored by Davi Arnaut's avatar Davi Arnaut

Manual merge.

parents 5a420e6d 1442ef0f
...@@ -1429,7 +1429,9 @@ bool dispatch_command(enum enum_server_command command, THD *thd, ...@@ -1429,7 +1429,9 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
break; break;
general_log_print(thd, command, NullS); general_log_print(thd, command, NullS);
#ifndef DBUG_OFF #ifndef DBUG_OFF
DBUG_EXECUTE_IF("simulate_detached_thread_refresh", bool debug_simulate= FALSE;
DBUG_EXECUTE_IF("simulate_detached_thread_refresh", debug_simulate= TRUE;);
if (debug_simulate)
{ {
/* /*
Simulate a reload without a attached thread session. Simulate a reload without a attached thread session.
...@@ -1444,9 +1446,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd, ...@@ -1444,9 +1446,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
my_pthread_setspecific_ptr(THR_THD, thd); my_pthread_setspecific_ptr(THR_THD, thd);
if (!res) if (!res)
my_ok(thd); my_ok(thd);
goto end; break;
} }
);
#endif #endif
if (!reload_acl_and_cache(thd, options, NULL, &not_used)) if (!reload_acl_and_cache(thd, options, NULL, &not_used))
my_ok(thd); my_ok(thd);
...@@ -1591,11 +1592,6 @@ bool dispatch_command(enum enum_server_command command, THD *thd, ...@@ -1591,11 +1592,6 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
break; break;
} }
/* Break the switch for DBUG wrapped code. */
#ifndef DBUG_OFF
end:
#endif
/* report error issued during command execution */ /* report error issued during command execution */
if (thd->killed_errno()) if (thd->killed_errno())
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment