2000-11-20 23:38:08 -07:00
|
|
|
#this one assumes we are ignoring updates on table foo, but doing
|
|
|
|
#the ones on all other tables
|
2000-12-07 07:54:59 -07:00
|
|
|
source include/master-slave.inc;
|
2000-11-20 23:38:08 -07: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;
|
|
|
|
create table foo (n int);
|
|
|
|
insert into foo values(5);
|
|
|
|
drop table if exists bar;
|
|
|
|
create table bar (m int);
|
|
|
|
insert into bar values(15);
|
|
|
|
drop table if exists choo;
|
|
|
|
create table choo (k int);
|
|
|
|
insert into choo values(55);
|
2001-01-17 05:47:33 -07:00
|
|
|
save_master_pos;
|
2000-11-20 23:38:08 -07:00
|
|
|
connection slave;
|
2001-01-17 05:47:33 -07:00
|
|
|
sync_with_master;
|
2001-03-25 01:02:26 +02:00
|
|
|
select foo.n,bar.m,choo.k from foo,bar,choo;
|
2001-01-03 02:15:48 +02:00
|
|
|
connection master;
|
|
|
|
drop table if exists foo,bar,choo;
|
2001-01-17 05:47:33 -07:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
|
|
|
drop table if exists foo,bar,choo;
|