mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
10 lines
230 B
Text
10 lines
230 B
Text
slave stop;
|
|
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;
|
|
slave start;
|
|
create table t1 (a int);
|
|
create table t2 (a int);
|
|
drop table t1;
|
|
drop table t2;
|