2011-06-21 17:40:51 +02:00
|
|
|
--source include/not_embedded.inc
|
|
|
|
--source include/have_example_plugin.inc
|
2020-10-26 17:20:59 +01:00
|
|
|
--source include/have_static_innodb.inc
|
2011-06-21 17:40:51 +02:00
|
|
|
|
|
|
|
--replace_regex /\.dll/.so/
|
|
|
|
eval install plugin example soname '$HA_EXAMPLE_SO';
|
|
|
|
create table t1(a int) engine=example;
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
alter table mysql.plugin engine=innodb;
|
|
|
|
--echo restart
|
|
|
|
--source include/restart_mysqld.inc
|
|
|
|
|
|
|
|
create table t1(a int) engine=example;
|
|
|
|
select * from t1;
|
|
|
|
drop table t1;
|
|
|
|
|
2018-08-02 17:59:11 +03:00
|
|
|
alter table mysql.plugin engine=aria;
|
2011-06-21 17:40:51 +02:00
|
|
|
uninstall plugin example;
|
|
|
|
|