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

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_bug26395.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
==== Initialize ====
 
7
[on master]
 
8
CREATE TABLE tinnodb (a INT) ENGINE = INNODB;
 
9
SHOW CREATE TABLE tinnodb;
 
10
Table   Create Table
 
11
tinnodb CREATE TABLE `tinnodb` (
 
12
  `a` int(11) DEFAULT NULL
 
13
) ENGINE=InnoDB DEFAULT CHARSET=latin1
 
14
set @old_debug= @@debug;
 
15
set @@debug= 'd,do_not_write_xid';
 
16
==== Test ====
 
17
INSERT INTO tinnodb VALUES (1);
 
18
SELECT * FROM tinnodb ORDER BY a;
 
19
a
 
20
1
 
21
[on slave]
 
22
include/sync_slave_io_with_master.inc
 
23
==== Verify results on slave ====
 
24
include/stop_slave.inc
 
25
Slave_IO_State = ''
 
26
Last_SQL_Error = ''
 
27
Last_IO_Error = ''
 
28
include/assert.inc [Assert that the slave table has no rows]
 
29
==== Clean up ====
 
30
[on master]
 
31
DROP TABLE tinnodb;
 
32
set @@debug= @old_debug;
 
33
[on slave]
 
34
DROP TABLE tinnodb;
 
35
include/rpl_end.inc