diff options
author | sasha@mysql.sashanet.com <> | 2000-09-29 17:20:26 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-09-29 17:20:26 -0600 |
commit | 62a6a0fdf1ce8ddd24175098e3aedbab8b36730d (patch) | |
tree | 3530dd1027b626d08c49a4bd8d57ba24d8424c45 /repl-tests/test-dump | |
parent | 079d859072a177152c02af0fa3bb78a728b872ef (diff) | |
download | mariadb-git-62a6a0fdf1ce8ddd24175098e3aedbab8b36730d.tar.gz |
bug fixes in server-id, moved replication functionality to
sql_repl.* will push this one, since the replication code now works
Diffstat (limited to 'repl-tests/test-dump')
-rw-r--r-- | repl-tests/test-dump/run.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/repl-tests/test-dump/run.test b/repl-tests/test-dump/run.test index 612db3fc6cf..22fa37e5ffd 100644 --- a/repl-tests/test-dump/run.test +++ b/repl-tests/test-dump/run.test @@ -1,4 +1,11 @@ source ../include/master-slave.inc; +connection slave; +!slave stop; +flush slave; +connection master; +flush master; +connection slave; +slave start; connection master; use test; drop table if exists words; @@ -7,6 +14,7 @@ load data infile '/usr/dict/words' into table words; drop table if exists words1; create table words1 (word char(20) not null); load data infile '/usr/dict/words' into table words1; +sleep 5; connection slave; use test; drop table if exists words; |