| 266 | } |
| 267 | |
| 268 | int Binlog_storage_delegate::before_binlog_init(THD * thd, |
| 269 | const char * server_uuid, |
| 270 | PSI_file_key * key_file_binlog_index, |
| 271 | const char * log_bin_index ) |
| 272 | { |
| 273 | DBUG_ENTER("Binlog_storage_delegate::before_binlog_init"); |
| 274 | Binlog_storage_param param; |
| 275 | |
| 276 | int ret= 0; |
| 277 | FOREACH_OBSERVER(ret, before_binlog_init, thd, (¶m, server_uuid, key_file_binlog_index, log_bin_index)); |
| 278 | DBUG_RETURN(ret); |
| 279 | } |
| 280 | |
| 281 | #ifdef HAVE_REPLICATION |
| 282 | int Binlog_transmit_delegate::transmit_start(THD *thd, ushort flags, |
nothing calls this directly
no outgoing calls
no test coverage detected