diff options
author | Alice Sherepa <alice.sherepa@gmail.com> | 2020-09-29 15:26:04 +0200 |
---|---|---|
committer | Alice Sherepa <alice.sherepa@gmail.com> | 2020-10-14 18:16:57 +0200 |
commit | 4a97e25aec94d2e3a9f37ee309bd5ba2d1d15466 (patch) | |
tree | b8f2f8ea8be6ce83d2d57e2ddeb83e1fe0a6f00d /mysql-test/suite/rpl/r/rpl_start_stop_slave.result | |
parent | 52dad6fd264425ef37c5e7ecf0dd904b3f50b7bf (diff) | |
download | mariadb-git-4a97e25aec94d2e3a9f37ee309bd5ba2d1d15466.tar.gz |
minor fixes of rpl_start_stop_slave and rpl_slave_grp_exec tests, expanding rpl_gtid_delete_domain for easier later analysis
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_start_stop_slave.result')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_start_stop_slave.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_start_stop_slave.result b/mysql-test/suite/rpl/r/rpl_start_stop_slave.result index c0140962a56..e0272b71192 100644 --- a/mysql-test/suite/rpl/r/rpl_start_stop_slave.result +++ b/mysql-test/suite/rpl/r/rpl_start_stop_slave.result @@ -5,10 +5,12 @@ set @time_before_kill := (select CURRENT_TIMESTAMP); [Time before the query] [Connection ID of the slave I/O thread found] kill <connection_id>; +include/wait_for_slave_io_to_stop.inc set @time_after_kill := (select CURRENT_TIMESTAMP); [Time after the query] [Killing of the slave IO thread was successful] START SLAVE IO_THREAD; +include/wait_for_slave_io_to_start.inc connection master; create table t1 (a int primary key); connection slave; |