mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
c5e1fb6720
- do not attempt loading federatedx dynamically - does not work on Windows embedded - race condition in rpl_start_stop_slave - fix exclusion rule to catch warning in partition test
11 lines
356 B
Text
11 lines
356 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
set @time_before_kill := (select CURRENT_TIMESTAMP);
|
|
[Time before the query]
|
|
[Connection ID of the slave I/O thread found]
|
|
kill <connection_id>;
|
|
set @time_after_kill := (select CURRENT_TIMESTAMP);
|
|
[Time after the query]
|
|
[Killing of the slave IO thread was successful]
|
|
START SLAVE IO_THREAD;
|
|
include/rpl_end.inc
|