~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_row_drop.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- source include/have_binlog_format_row.inc
 
2
-- source include/master-slave.inc
 
3
 
 
4
# Bug#12415: DROP of temporary table on master stops slave
 
5
connection master;
 
6
--echo **** On Master ****
 
7
CREATE TABLE t1 (a int);
 
8
CREATE TABLE t2 (a int);
 
9
CREATE TEMPORARY TABLE t2 (a int, b int);
 
10
SHOW TABLES;
 
11
sync_slave_with_master;
 
12
--echo **** On Slave ****
 
13
SHOW TABLES;
 
14
connection master;
 
15
--echo **** On Master ****
 
16
DROP TABLE t2;        # Dropping the temporary table
 
17
SHOW TABLES;
 
18
sync_slave_with_master;
 
19
--echo **** On Slave ****
 
20
SHOW TABLES;          # There should be two tables on the slave
 
21
 
 
22
connection master;
 
23
--echo **** On Master ****
 
24
CREATE TEMPORARY TABLE t2 (a int, b int);
 
25
SHOW TABLES;
 
26
sync_slave_with_master;
 
27
--echo **** On Slave ****
 
28
SHOW TABLES;
 
29
connection master;
 
30
--echo **** On Master ****
 
31
# Should drop the non-temporary table t1 and the temporary table t2
 
32
DROP TABLE t1,t2;
 
33
source include/show_binlog_events.inc;
 
34
SHOW TABLES;
 
35
sync_slave_with_master;
 
36
--echo **** On Slave ****
 
37
SHOW TABLES;
 
38
 
 
39
--disable_query_log
 
40
--disable_warnings
 
41
connection master;
 
42
DROP TABLE IF EXISTS t2;
 
43
sync_slave_with_master;
 
44
--enable_warnings
 
45
--enable_query_log
 
46
--source include/rpl_end.inc