mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
don't error out on unknown options in the
replication thread or when opening a table
This commit is contained in:
25
mysql-test/suite/rpl/r/rpl_table_options.result
Normal file
25
mysql-test/suite/rpl/r/rpl_table_options.result
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
Reference in New Issue
Block a user