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

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_slave_load_in.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 not null auto_increment, b int, primary key(a));
 
7
create table t2(a int not null auto_increment, b int, primary key(a)) engine=innodb;
 
8
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
 
9
start transaction;
 
10
insert into t2(b) values (1);
 
11
insert into t2(b) values (2);
 
12
load data infile '../../std_data/rpl_loaddata.dat' into table t2;
 
13
load data infile '../../std_data/rpl_loaddata.dat' into table t2;
 
14
commit;
 
15
include/diff_tables.inc [master:t1, slave:t1]
 
16
include/diff_tables.inc [master:t2, slave:t2]
 
17
drop table t1;
 
18
drop table t2;
 
19
include/rpl_end.inc