mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
b5615eff0d
Idea comes from MySQL which does something similar
12 lines
297 B
Text
12 lines
297 B
Text
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;
|