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