blob: f1d9a28ec958a468f041d6dbf369943b25c2ddf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
install plugin example soname 'ha_example';
create table t1(a int) engine=example;
drop table t1;
alter table mysql.plugin engine=innodb;
--example[=name] Enable or disable EXAMPLE plugin. One of: ON, OFF, FORCE
# restart
create table t1(a int) engine=example;
select * from t1;
a
drop table t1;
alter table mysql.plugin engine=aria;
uninstall plugin example;
|