blob: 3a1ea388a9346236183fe688b0f0b4eaa47fa7d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
create table v1 (a int);
include/master-slave.inc
[connection master]
connection master;
create table t1 (a int);
create view v1 as select * from t1;
ERROR 42S01: Table 'v1' already exists
show tables;
Tables_in_test
t1
v1
connection slave;
show tables;
Tables_in_test
t1
connection master;
drop table if exists t1, v1;
include/rpl_end.inc
|