mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
22 lines
556 B
Text
22 lines
556 B
Text
#
|
|
# BUG#43913
|
|
# This test verifies if loading data infile will work fine
|
|
# if the path of the load data file is a symbolic link.
|
|
#
|
|
--source include/not_windows.inc
|
|
--source include/master-slave.inc
|
|
--source include/have_binlog_format_statement.inc
|
|
|
|
create table t1(a int not null auto_increment, b int, primary key(a) );
|
|
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
|
select * from t1;
|
|
|
|
sync_slave_with_master;
|
|
connection slave;
|
|
select * from t1;
|
|
|
|
connection master;
|
|
drop table t1;
|
|
sync_slave_with_master;
|
|
|
|
--source include/rpl_end.inc
|