| 1297 | return var->save_result.ulonglong_value == 0; |
| 1298 | } |
| 1299 | static bool fix_log_output(sys_var *self, THD *thd, enum_var_type type) |
| 1300 | { |
| 1301 | logger.lock_exclusive(); |
| 1302 | logger.init_general_log(log_output_options); |
| 1303 | logger.unlock(); |
| 1304 | return false; |
| 1305 | } |
| 1306 | |
| 1307 | static const char *log_output_names[] = { "NONE", "FILE", "TABLE", NULL}; |
| 1308 |
nothing calls this directly
no test coverage detected