mariadb/mysql-test/suite/rpl/t/rpl_drop_temp.test

34 lines
902 B
Text
Raw Normal View History

##############################################
# Change Author: JBM
# Change Date: 2006-02-07
# Change: Added ENGINE=MyISAM
# Purpose: According to TU in 16552 This is how
# to work around NDB's issue with temp tables
##############################################
source include/master-slave.inc;
2008-02-28 14:36:14 +03:00
source include/have_binlog_format_mixed_or_statement.inc;
--disable_warnings
create database if not exists mysqltest;
--enable_warnings
create temporary table mysqltest.t1 (n int)ENGINE=MyISAM;
create temporary table mysqltest.t2 (n int)ENGINE=MyISAM;
2008-02-28 14:36:14 +03:00
connection master;
disconnect master;
2008-02-28 14:36:14 +03:00
connection master1;
# Wait until drop of temp tables appears in binlog
let $wait_binlog_event= DROP;
source include/wait_for_binlog_event.inc;
sync_slave_with_master;
show status like 'Slave_open_temp_tables';
# Cleanup
2005-03-16 23:56:37 +01:00
connection default;
drop database mysqltest;
sync_slave_with_master;
# End of 4.1 tests