mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
84ca91227c
mysql-test/t/rpl_drop_temp.test: Updated with work around stated by Tomas in bug 16552. NDB does not support temp tables. mysql-test/r/rpl_drop_temp.result: Updated with work around stated by Tomas in bug 16552. NDB does not support temp tables. mysql-test/t/rpl_foreign_key_innodb-slave.opt: Need to ensure that innodb table is created on the slave for this test mysql-test/t/rpl_err_ignoredtable.test: updated to run with ndb as default mysql-test/r/rpl_err_ignoredtable.result: updated to run with ndb as default mysql-test/t/disabled.def: Update requested by Lars mysql-test/t/rpl_load_table_from_master.test: Update requested by Lars mysql-test/r/rpl_load_table_from_master.result: Update requested by Lars
13 lines
420 B
Text
13 lines
420 B
Text
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;
|
|
create database if not exists mysqltest;
|
|
create temporary table mysqltest.t1 (n int)ENGINE=MyISAM;
|
|
create temporary table mysqltest.t2 (n int)ENGINE=MyISAM;
|
|
show status like 'Slave_open_temp_tables';
|
|
Variable_name Value
|
|
Slave_open_temp_tables 0
|
|
drop database mysqltest;
|