2002-10-24 17:46:14 -06:00
|
|
|
stop slave;
|
2002-08-08 03:12:02 +03:00
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2001-09-27 23:05:54 -06:00
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2002-10-24 17:46:14 -06:00
|
|
|
start slave;
|
2001-09-27 23:05:54 -06:00
|
|
|
use test;
|
|
|
|
drop table if exists foo;
|
|
|
|
create table foo (n int);
|
|
|
|
insert into foo values(4);
|
|
|
|
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);
|
|
|
|
select foo.n,bar.m,choo.k from foo,bar,choo;
|
2000-12-27 03:31:06 +02:00
|
|
|
n m k
|
|
|
|
4 15 55
|
2001-09-27 23:05:54 -06:00
|
|
|
drop table if exists foo,bar,choo;
|
|
|
|
drop table if exists foo,bar,choo;
|