summaryrefslogtreecommitdiff
path: root/mysql-test/main/plugin_innodb.result
blob: c55bfd779c276603bd0489ea44a42fc8f61c9c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
install plugin example soname 'ha_example.so';
create table t1(a int) engine=example;
drop table t1;
alter table mysql.plugin engine=innodb;
restart
# restart
create table t1(a int) engine=example;
select * from t1;
a
drop table t1;
alter table mysql.plugin engine=aria;
uninstall plugin example;