| 294 | } |
| 295 | |
| 296 | int Binlog_transmit_delegate::transmit_stop(THD *thd, ushort flags) |
| 297 | { |
| 298 | Binlog_transmit_param param; |
| 299 | param.flags= flags; |
| 300 | |
| 301 | DBUG_EXECUTE_IF("crash_binlog_transmit_hook", DBUG_SUICIDE();); |
| 302 | |
| 303 | int ret= 0; |
| 304 | FOREACH_OBSERVER(ret, transmit_stop, thd, (¶m)); |
| 305 | return ret; |
| 306 | } |
| 307 | |
| 308 | int Binlog_transmit_delegate::reserve_header(THD *thd, ushort flags, |
| 309 | String *packet) |
nothing calls this directly
no outgoing calls
no test coverage detected