summaryrefslogtreecommitdiff
path: root/mysql-test/suite/archive/discover_5438.result
blob: b5ab56aa364c098aabba672378db16e831a227c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
create table t1 (a int) engine=archive;
create view t1 as select "I am a view" as a;
ERROR 42S01: Table 't1' already exists
drop table t1;
create table t1 (a int) engine=archive;
grant select on test.t1 to foo@bar;
drop user foo@bar;
drop table t1;
create table t1 (a int) engine=archive;
create table t2 (a int);
alter table t2 rename t1;
ERROR 42S01: Table 't1' already exists
drop table t2, t1;