mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
458ced9f34
mysql-test/mysql-test-run.sh: Added --rpl option which tests all t/rpl*.test tests.
25 lines
620 B
Text
25 lines
620 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
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;
|
|
n m k
|
|
4 15 55
|
|
drop table if exists foo,bar,choo;
|
|
drop table if exists foo,bar,choo;
|