mirror of
https://github.com/MariaDB/server.git
synced 2025-08-29 00:08:14 +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
26 lines
662 B
Plaintext
26 lines
662 B
Plaintext
connect (master,localhost,root,,test,0,mysql-master.sock);
|
|
connect (slave,localhost,root,,test,0, mysql-slave.sock);
|
|
source include/have_default_master.inc;
|
|
connection master;
|
|
reset master;
|
|
show master status;
|
|
connection slave;
|
|
reset slave;
|
|
show slave status;
|
|
change master to master_host='127.0.0.1';
|
|
show slave status;
|
|
change master to master_host='127.0.0.1',master_user='root',
|
|
master_password='',master_port=9306;
|
|
show slave status;
|
|
slave start;
|
|
show slave status;
|
|
connection master;
|
|
drop table if exists foo;
|
|
create table foo (n int);
|
|
insert into foo values (10),(45),(90);
|
|
connection slave;
|
|
sleep 2;
|
|
select * from foo;
|
|
connection master;
|
|
drop table foo;
|