mirror of
https://github.com/MariaDB/server.git
synced 2025-08-20 05:03:09 +03:00
- 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
12 lines
356 B
Plaintext
12 lines
356 B
Plaintext
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
|