Commit 862cbdfe authored by sasha@mysql.sashanet.com's avatar sasha@mysql.sashanet.com

Merge work:/home/bk/mysql into mysql.sashanet.com:/reiser-data/mysql

parents 818bdb62 4c77f22c
source include/master-slave.inc;
connection master;
create table t1(n int);
create table t2(n int);
insert into t1 values(get_lock("lock",2));
dirty_close master;
connection master1;
select get_lock("lock",2);
select release_lock("lock");
let $1=20000;
while ($1)
{
select get_lock("lock",2);
select release_lock("lock");
dec $1;
}
save_master_pos;
connection slave;
sync_with_master;
......
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