blob: 7c1b7c5b60ddc4c14250c8675b0e4bd58824ea7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
drop table if exists t1;
drop table if exists t1;
drop table t1;
Unknown table 't1'
create table t1(n int);
insert into t1 values(1);
create temporary table t1( n int);
insert into t1 values(2);
create table t1(n int);
Table 't1' already exists
drop table t1;
select * from t1;
n
1
drop database if exists foo;
create database foo;
drop database if exists foo;
create database foo;
create table foo.foo (n int);
insert into foo.foo values (4);
select * from foo.foo;
n
4
drop database if exists foo;
create database foo;
drop database foo;
drop database if exists foo;
flush tables with read lock;
create database foo;
Got one of the listed errors
unlock tables;
create database foo;
show databases;
Database
foo
mysql
test
flush tables with read lock;
drop database foo;
Got one of the listed errors
unlock tables;
drop database foo;
show databases;
Database
mysql
test
drop database foo;
Can't drop database 'foo'. Database doesn't exist
|