2002-10-25 01:46:14 +02:00
|
|
|
stop slave;
|
2002-08-08 02:12:02 +02:00
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2001-09-28 07:05:54 +02:00
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2002-10-25 01:46:14 +02:00
|
|
|
start slave;
|
2001-09-28 07:05:54 +02:00
|
|
|
use test;
|
2003-01-06 00:48:59 +01:00
|
|
|
drop table if exists mysqltest_foo;
|
|
|
|
drop table if exists mysqltest_bar;
|
|
|
|
create table mysqltest_foo (n int);
|
|
|
|
insert into mysqltest_foo values(4);
|
2001-09-28 07:05:54 +02:00
|
|
|
use test;
|
2003-01-06 00:48:59 +01:00
|
|
|
create table mysqltest_foo (n int);
|
|
|
|
insert into mysqltest_foo values(5);
|
|
|
|
create table mysqltest_bar (m int);
|
|
|
|
insert into mysqltest_bar values(15);
|
|
|
|
create table t1 (k int);
|
|
|
|
insert into t1 values(55);
|
|
|
|
select mysqltest_foo.n,mysqltest_bar.m,t1.k from mysqltest_foo,mysqltest_bar,t1;
|
2000-12-27 02:31:06 +01:00
|
|
|
n m k
|
|
|
|
4 15 55
|
2003-01-06 00:48:59 +01:00
|
|
|
drop table mysqltest_foo,mysqltest_bar,t1;
|
|
|
|
drop table mysqltest_foo,mysqltest_bar,t1;
|