1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixed bug in load data infile replication

updated test suite to always test if slave obeys stop/start commands
This commit is contained in:
sasha@mysql.sashanet.com
2000-12-08 07:11:22 -07:00
parent 304b15f843
commit 6b7098cb20
5 changed files with 8 additions and 2 deletions

View File

@ -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';