summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_table_options.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2010-05-12 19:56:05 +0200
committerSergei Golubchik <sergii@pisem.net>2010-05-12 19:56:05 +0200
commitc9b10e250d96d3f8eab22ebb698654da78fed5d8 (patch)
tree7e0f724494bf68a42cdefa827e15726c64ebb6dd /mysql-test/suite/rpl/r/rpl_table_options.result
parentf1fb9b67c4e9a402bb52ca73881d7641c9837caa (diff)
downloadmariadb-git-c9b10e250d96d3f8eab22ebb698654da78fed5d8.tar.gz
don't error out on unknown options in the
replication thread or when opening a table
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_table_options.result')
-rw-r--r--mysql-test/suite/rpl/r/rpl_table_options.result25
1 files changed, 25 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_table_options.result b/mysql-test/suite/rpl/r/rpl_table_options.result
new file mode 100644
index 00000000000..9b0511f6494
--- /dev/null
+++ b/mysql-test/suite/rpl/r/rpl_table_options.result
@@ -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;