Commit b595ea8c authored by unknown's avatar unknown

Need to commit to be able to pull to be able to push to fix an oops


repl-tests/test-dump/run.test:
  increased wait for propogation
repl-tests/test-repl/run.test:
  increased wait for propogation
parent 323905c1
...@@ -14,7 +14,7 @@ load data infile '/usr/dict/words' into table words; ...@@ -14,7 +14,7 @@ load data infile '/usr/dict/words' into table words;
drop table if exists words1; drop table if exists words1;
create table words1 (word char(20) not null); create table words1 (word char(20) not null);
load data infile '/usr/dict/words' into table words1; load data infile '/usr/dict/words' into table words1;
sleep 5; sleep 20;
connection slave; connection slave;
use test; use test;
drop table if exists words; drop table if exists words;
......
...@@ -18,7 +18,7 @@ insert into foo values(1),(2); ...@@ -18,7 +18,7 @@ insert into foo values(1),(2);
@foo-dump-master.master select * from foo; @foo-dump-master.master select * from foo;
@sum-wlen-master.master select sum(length(word)) from words; @sum-wlen-master.master select sum(length(word)) from words;
connection slave; connection slave;
sleep 5; sleep 15;
use test; use test;
@sum-wlen-slave.master select sum(length(word)) from words; @sum-wlen-slave.master select sum(length(word)) from words;
@foo-dump-slave.master select * from foo; @foo-dump-slave.master select * from foo;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment