~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mto: (1.3.9 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pcrsa022082zj46k
Tags: upstream-5.6.24
ImportĀ upstreamĀ versionĀ 5.6.24

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
[connection slave]
 
7
#
 
8
# Stop slave threads and clear slave datadir.
 
9
#
 
10
include/stop_slave.inc
 
11
RESET SLAVE;
 
12
[connection master]
 
13
CREATE TABLE t1 (c1 INT);
 
14
[connection slave]
 
15
#
 
16
# Copy the binlog with Anonymous_GTID log events and
 
17
# relay log index to slave datadir.
 
18
#
 
19
include/start_slave.inc
 
20
[connection master]
 
21
include/sync_slave_sql_with_master.inc
 
22
#
 
23
# Make sure that the binlog with Anonymous_GTID log events
 
24
# is applied completely.
 
25
#
 
26
include/assert.inc [Table t2 must contain 1]
 
27
DROP TABLE t2;
 
28
[connection master]
 
29
DROP TABLE t1;
 
30
include/rpl_end.inc