2000-12-07 07:54:59 -07:00
|
|
|
source include/master-slave.inc;
|
2000-11-17 23:35:40 -07:00
|
|
|
connection master;
|
|
|
|
use test;
|
2001-01-03 02:15:48 +02:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (word char(20) not null);
|
|
|
|
load data infile '../../std_data/words.dat' into table t1;
|
2000-11-17 23:35:40 -07:00
|
|
|
drop table if exists foo;
|
|
|
|
create table foo(n int);
|
|
|
|
insert into foo values(1),(2);
|
2001-01-17 05:47:33 -07:00
|
|
|
save_master_pos;
|
2000-11-17 23:35:40 -07:00
|
|
|
connection slave;
|
2001-01-17 05:47:33 -07:00
|
|
|
sync_with_master;
|
2000-11-17 23:35:40 -07:00
|
|
|
use test;
|
2001-01-17 05:47:33 -07:00
|
|
|
select * from foo;
|
|
|
|
select sum(length(word)) from t1;
|
2001-01-03 02:15:48 +02:00
|
|
|
connection master;
|
|
|
|
drop table t1;
|
2001-01-17 05:47:33 -07:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
2000-11-17 23:35:40 -07:00
|
|
|
|