| 378 | } |
| 379 | |
| 380 | int Binlog_transmit_delegate::after_send_event(THD *thd, ushort flags, |
| 381 | String *packet, |
| 382 | const char *skipped_log_file, |
| 383 | my_off_t skipped_log_pos) |
| 384 | { |
| 385 | Binlog_transmit_param param; |
| 386 | param.flags= flags; |
| 387 | |
| 388 | DBUG_EXECUTE_IF("crash_binlog_transmit_hook", DBUG_SUICIDE();); |
| 389 | |
| 390 | int ret= 0; |
| 391 | FOREACH_OBSERVER(ret, after_send_event, thd, |
| 392 | (¶m, packet->c_ptr(), packet->length(), |
| 393 | skipped_log_file+dirname_length(skipped_log_file), |
| 394 | skipped_log_pos)); |
| 395 | return ret; |
| 396 | } |
| 397 | |
| 398 | int Binlog_transmit_delegate::after_reset_master(THD *thd, ushort flags) |
| 399 |
nothing calls this directly
no outgoing calls
no test coverage detected