summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb_uninstall.result
blob: 40c76b4131c9513bd6bb5fa31e9414f64991d75b (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
install plugin innodb soname 'ha_innodb';
create table t1(a int not null primary key) engine=innodb;
connect  con1, localhost, root;
connection con1;
begin;
insert into t1 values(1);
connection default;
flush tables;
uninstall plugin innodb;
connection con1;
select sleep(1);
sleep(1)
0
disconnect con1;
connection default;
Warnings:
Warning	1620	Plugin is busy and will be uninstalled on shutdown
connect  con1, localhost, root;
connection con1;
install plugin innodb soname 'ha_innodb';
drop table t1;
create table t2(a int not null primary key) engine=innodb;
insert into t2 values(1);
drop table t2;
connection default;
uninstall plugin innodb;
connection con1;
select sleep(1);
sleep(1)
0
disconnect con1;
connection default;
Warnings:
Warning	1620	Plugin is busy and will be uninstalled on shutdown