mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
92a3aedc05
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
28 lines
645 B
Text
28 lines
645 B
Text
source include/master-slave.inc;
|
|
source include/have_default_master.inc;
|
|
connection master;
|
|
show master status;
|
|
connection slave;
|
|
sleep 0.2;
|
|
show slave status;
|
|
change master to master_log_pos=73;
|
|
sleep 0.2;
|
|
slave stop;
|
|
change master to master_log_pos=73;
|
|
show slave status;
|
|
slave start;
|
|
show slave status;
|
|
change master to master_log_pos=173;
|
|
show slave status;
|
|
connection master;
|
|
show master status;
|
|
create table if not exists foo(n int);
|
|
drop table if exists foo;
|
|
create table foo (n int);
|
|
insert into foo values (1),(2),(3);
|
|
connection slave;
|
|
change master to master_log_pos=73;
|
|
sleep 2;
|
|
select * from foo;
|
|
connection master;
|
|
drop table foo;
|