mirror of
https://github.com/MariaDB/server.git
synced 2025-05-08 15:01:49 +03:00
Docs/manual.texi: More examples based on user comments client/mysqltest.c: Added --sleep and --tmpdir mysql-test/README: Update mysql-test/include/master-slave.inc: Fixed to not be dependent on path to sockets mysql-test/install_test_db.sh: Added privilege for hostname% mysql-test/mysql-test-run.sh: Portability fixes + a lot of new options mysql-test/r/bigint.result: Made test portable mysql-test/t/bigint.test: Made test portable mysql-test/t/rpl000008.test: Changed sleeptime mysql-test/t/rpl000012.test: Fixed to not be dependent on path to sockets mysql-test/t/rpl000013.test: Fixed to not be dependent on path to sockets mysql-test/t/rpl000014.test: Fixed to not be dependent on path to sockets mysql-test/t/rpl000015.test: Fixed to not be dependent on path to sockets mysql-test/t/rpl000016.test: Fixed to not be dependent on path to sockets
14 lines
458 B
PHP
14 lines
458 B
PHP
connect (master,localhost,root,,test,0,mysql-master.sock);
|
|
connect (master1,localhost,root,,test,0,mysql-master.sock);
|
|
connect (slave,localhost,root,,test,0,mysql-slave.sock);
|
|
connect (slave1,localhost,root,,test,0,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;
|
|
@r/slave-running.result show status like 'Slave_running';
|