~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_stm_flsh_tbls.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include/master-slave.inc
 
2
Warnings:
 
3
Note    ####    Sending passwords in plain text without SSL/TLS is extremely insecure.
 
4
Note    ####    Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
 
5
[connection master]
 
6
create table t1 (a int);
 
7
insert into t1 values (10);
 
8
create table t2 (a int);
 
9
create table t3 (a int) engine=merge union(t1);
 
10
create table t4 (a int);
 
11
insert into t4 select * from t3;
 
12
rename table t1 to t5, t2 to t1;
 
13
flush no_write_to_binlog tables;
 
14
include/show_binlog_events.inc
 
15
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
 
16
master-bin.000001       #       Query   #       #       use `test`; rename table t1 to t5, t2 to t1
 
17
select * from t3;
 
18
a
 
19
flush tables;
 
20
select * from t3;
 
21
a
 
22
stop slave;
 
23
include/wait_for_slave_to_stop.inc
 
24
drop table t1;
 
25
flush tables with read lock;
 
26
start slave;
 
27
include/wait_for_slave_to_start.inc
 
28
stop slave;
 
29
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
 
30
unlock tables;
 
31
drop table t3, t4, t5;
 
32
include/rpl_end.inc