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

This commit is contained in:
sasha@mysql.sashanet.com 2000-10-01 21:26:29 -06:00
parent e049613391
commit e97281efc3
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +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;
sleep 20;
connection slave;
use test;
drop table if exists words;

View File

@ -18,7 +18,7 @@ insert into foo values(1),(2);
@foo-dump-master.master select * from foo;
@sum-wlen-master.master select sum(length(word)) from words;
connection slave;
sleep 5;
sleep 15;
use test;
@sum-wlen-slave.master select sum(length(word)) from words;
@foo-dump-slave.master select * from foo;