MOON
Server: Apache
System: Linux vps.thepromohut.com 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: caretrak (507)
PHP: 5.2.10
Disabled: NONE
Upload Files
File: //usr/share/mysql-test/t/rpl_drop_temp.test
source include/master-slave.inc;
--disable_warnings
create database if not exists mysqltest;
--enable_warnings

connect (con_temp,127.0.0.1,root,,test,$MASTER_MYPORT,);

connection con_temp;
use mysqltest;
create temporary table mysqltest.t1 (n int);
create temporary table mysqltest.t2 (n int);
select get_lock("con_temp",10);

connection master;
disconnect con_temp;
select get_lock("con_temp",10);
sync_slave_with_master;

connection slave;
show status like 'Slave_open_temp_tables';
connection master;
drop database mysqltest;
sync_slave_with_master;

#
# Bug#49137
# This test verifies if DROP MULTI TEMPORARY TABLE 
# will cause different errors on master and slave, 
# when one or more of these tables do not exist. 
#

connection master;
DROP TEMPORARY TABLE IF EXISTS tmp1;
CREATE TEMPORARY TABLE t1 ( a int );
--error 1051
DROP TEMPORARY TABLE t1, t2;
--error 1051
DROP TEMPORARY TABLE tmp2;
sync_slave_with_master;

connection slave;
stop slave;
wait_for_slave_to_stop;

--echo **** On Master ****
connection master;
CREATE TEMPORARY TABLE tmp3 (a int);
DROP TEMPORARY TABLE tmp3;

connection slave;
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
START SLAVE;

connection master;
sync_slave_with_master;

# End of 4.1 tests