2000-11-21 07:38:08 +01:00
|
|
|
#this one assumes we are ignoring updates on table foo, but doing
|
|
|
|
#the ones on bar
|
2000-12-07 15:54:59 +01:00
|
|
|
source include/master-slave.inc;
|
2000-11-21 07:38:08 +01:00
|
|
|
connection slave;
|
|
|
|
use test;
|
|
|
|
drop table if exists foo;
|
|
|
|
create table foo (n int);
|
|
|
|
insert into foo values(4);
|
|
|
|
connection master;
|
|
|
|
use test;
|
|
|
|
drop table if exists foo;
|
2000-12-15 04:17:18 +01:00
|
|
|
create table foo (s char(20));
|
|
|
|
load data infile '../../std_data/words.dat' into table foo;
|
|
|
|
insert into foo values('five');
|
2000-11-21 07:38:08 +01:00
|
|
|
drop table if exists bar;
|
|
|
|
create table bar (m int);
|
|
|
|
insert into bar values(15);
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
2000-11-21 07:38:08 +01:00
|
|
|
connection slave;
|
2001-01-17 13:47:33 +01:00
|
|
|
sync_with_master;
|
2001-03-25 00:02:26 +01:00
|
|
|
select foo.n,bar.m from foo,bar;
|
2001-01-03 01:15:48 +01:00
|
|
|
connection master;
|
|
|
|
drop table if exists bar,foo;
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|