diff options
author | Monty <monty@mariadb.org> | 2015-11-18 14:46:30 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2015-11-18 14:46:30 +0200 |
commit | f383cbcb03c499a935f4c59dd5101b2a6470c5c6 (patch) | |
tree | 16b4fc163b49b37b5c031fa03e98feb16c24ccff /mysql-test/suite/rpl | |
parent | dd90dae3c0f639ebc29be3477c8732ecefa6de1d (diff) | |
download | mariadb-git-f383cbcb03c499a935f4c59dd5101b2a6470c5c6.tar.gz |
Added some selects to rpl_parallel2.test to find out where it fails in buildbot
Diffstat (limited to 'mysql-test/suite/rpl')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_parallel2.result | 6 | ||||
-rw-r--r-- | mysql-test/suite/rpl/t/rpl_parallel2.test | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_parallel2.result b/mysql-test/suite/rpl/r/rpl_parallel2.result index 2ca73738d84..f79661ee6fb 100644 --- a/mysql-test/suite/rpl/r/rpl_parallel2.result +++ b/mysql-test/suite/rpl/r/rpl_parallel2.result @@ -88,6 +88,12 @@ a b 18 0 19 0 UNLOCK TABLES; +SELECT "after UNLOCK TABLES" as state; +state +after UNLOCK TABLES +SELECT "after reap of STOP SLAVE" as state; +state +after reap of STOP SLAVE include/wait_for_slave_to_stop.inc include/start_slave.inc SELECT * FROM t2 ORDER BY a; diff --git a/mysql-test/suite/rpl/t/rpl_parallel2.test b/mysql-test/suite/rpl/t/rpl_parallel2.test index 50617c63024..3a9c801175f 100644 --- a/mysql-test/suite/rpl/t/rpl_parallel2.test +++ b/mysql-test/suite/rpl/t/rpl_parallel2.test @@ -162,9 +162,13 @@ SELECT * FROM t2 ORDER BY a; --connection s2 UNLOCK TABLES; +SELECT "after UNLOCK TABLES" as state; + --connection s1 reap; +SELECT "after reap of STOP SLAVE" as state; + --connection server_2 --source include/wait_for_slave_to_stop.inc --source include/start_slave.inc |