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