| 249 | |
| 250 | |
| 251 | int Binlog_storage_delegate::after_flush(THD *thd, |
| 252 | const char *dir_path, |
| 253 | const char *prev_log_file, |
| 254 | my_off_t prev_log_pos, |
| 255 | const char *log_file, |
| 256 | my_off_t log_pos) |
| 257 | { |
| 258 | DBUG_ENTER("Binlog_storage_delegate::after_flush"); |
| 259 | DBUG_PRINT("enter", ("log_file: %s, log_pos: %llu", |
| 260 | log_file, (ulonglong) log_pos)); |
| 261 | Binlog_storage_param param; |
| 262 | |
| 263 | int ret= 0; |
| 264 | FOREACH_OBSERVER(ret, after_flush, thd, (¶m, dir_path, prev_log_file, prev_log_pos, log_file, log_pos)); |
| 265 | DBUG_RETURN(ret); |
| 266 | } |
| 267 | |
| 268 | int Binlog_storage_delegate::before_binlog_init(THD * thd, |
| 269 | const char * server_uuid, |
nothing calls this directly
no outgoing calls
no test coverage detected