summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/failed_create_view-6409.result
blob: 6b04f2960d12c82390297bb3238301e2c78140f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
create table v1 (a int);
include/master-slave.inc
[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
show tables;
Tables_in_test
t1
drop table if exists t1, v1;
include/rpl_end.inc