~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-201203300109

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2011-11-08 11:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20111108113113-3ulw01fvi4vn8m25
Tags: upstream-5.5.17
ImportĀ upstreamĀ versionĀ 5.5.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# BUG#43913
 
3
# This test verifies if loading data infile will work fine 
 
4
# if the path of the load data file is a symbolic link.
 
5
#
 
6
--source include/master-slave.inc
 
7
--source include/not_windows.inc
 
8
--source include/have_binlog_format_statement.inc
 
9
 
 
10
create table t1(a int not null auto_increment, b int, primary key(a) );
 
11
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
 
12
select * from t1;
 
13
 
 
14
sync_slave_with_master;
 
15
connection slave;
 
16
select * from t1;
 
17
 
 
18
connection master;
 
19
drop table t1;
 
20
sync_slave_with_master;
 
21
 
 
22
--source include/rpl_end.inc