mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00
26 lines
629 B
Plaintext
26 lines
629 B
Plaintext
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
install plugin example soname 'ha_example.so';
|
|
set storage_engine=example;
|
|
create table t1 (a int not null) ull=12340;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) NOT NULL
|
|
) ENGINE=EXAMPLE DEFAULT CHARSET=latin1 `ull`=12340
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) NOT NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 `ull`=12340
|
|
drop table t1;
|
|
set storage_engine=default;
|
|
select 1;
|
|
1
|
|
1
|
|
uninstall plugin example;
|