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/not_windows.inc
7--source include/have_binlog_format_statement.inc
8--source include/master-slave.inc
9
10create table t1(a int not null auto_increment, b int, primary key(a) );
11load data infile '../../std_data/rpl_loaddata.dat' into table t1;
12select * from t1;
13
14sync_slave_with_master;
15connection slave;
16select * from t1;
17
18connection master;
19drop table t1;
20sync_slave_with_master;
21
22--source include/rpl_end.inc
23