summaryrefslogtreecommitdiff
path: root/mysql-test/include
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2000-12-08 07:11:22 -0700
committersasha@mysql.sashanet.com <>2000-12-08 07:11:22 -0700
commit6b7098cb2047e731591bf06ecdb4a0472cb543c2 (patch)
treea4a9077b0d73cbf688a84c248e633a7bd14e9743 /mysql-test/include
parent304b15f843e970b6da67076089bc8a0645078393 (diff)
downloadmariadb-git-6b7098cb2047e731591bf06ecdb4a0472cb543c2.tar.gz
fixed bug in load data infile replication
updated test suite to always test if slave obeys stop/start commands
Diffstat (limited to 'mysql-test/include')
-rw-r--r--mysql-test/include/master-slave.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/include/master-slave.inc b/mysql-test/include/master-slave.inc
index 137749912a7..8270c0e46f6 100644
--- a/mysql-test/include/master-slave.inc
+++ b/mysql-test/include/master-slave.inc
@@ -4,8 +4,10 @@ connect (slave,localhost,root,,test,0,var/tmp/mysql-slave.sock);
connect (slave1,localhost,root,,test,0,var/tmp/mysql-slave.sock);
connection slave;
!slave stop;
+@r/slave-stopped.result show status like 'Slave_running';
connection master;
reset master;
connection slave;
reset slave;
-!slave start;
+slave start;
+@r/slave-running.result show status like 'Slave_running';