2011-07-02 22:12:12 +02:00
|
|
|
include/master-slave.inc
|
|
|
|
[connection master]
|
2010-05-12 19:56:05 +02:00
|
|
|
install plugin example soname 'ha_example.so';
|
|
|
|
set storage_engine=example;
|
2016-03-25 20:51:22 +04:00
|
|
|
connection slave;
|
|
|
|
connection master;
|
2010-05-12 19:56:05 +02:00
|
|
|
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
|
2015-04-10 02:36:54 +02:00
|
|
|
) ENGINE=EXAMPLE DEFAULT CHARSET=latin1 `ull`=12340
|
2016-03-25 20:51:22 +04:00
|
|
|
connection slave;
|
|
|
|
connection slave;
|
2010-05-12 19:56:05 +02:00
|
|
|
show create table t1;
|
|
|
|
Table Create Table
|
2014-07-08 19:39:27 +02:00
|
|
|
t1 CREATE TABLE `t1` (
|
|
|
|
`a` int(11) NOT NULL
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /* `ull`=12340 */
|
|
|
|
set sql_mode=ignore_bad_table_options;
|
|
|
|
show create table t1;
|
|
|
|
Table Create Table
|
2010-05-12 19:56:05 +02:00
|
|
|
t1 CREATE TABLE `t1` (
|
|
|
|
`a` int(11) NOT NULL
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 `ull`=12340
|
2016-03-25 20:51:22 +04:00
|
|
|
connection master;
|
2010-05-12 19:56:05 +02:00
|
|
|
drop table t1;
|
|
|
|
set storage_engine=default;
|
|
|
|
select 1;
|
|
|
|
1
|
|
|
|
1
|
|
|
|
uninstall plugin example;
|
2011-07-02 22:12:12 +02:00
|
|
|
include/rpl_end.inc
|