Current Path : /home/usr.opt/mysql57/mysql-test/suite/rpl/t/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/t/rpl_loaddata_symlink.test |
# # 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_group_replication_plugin.inc --source include/not_windows.inc --source include/have_binlog_format_statement.inc --source include/master-slave.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; --source include/sync_slave_sql_with_master.inc connection slave; select * from t1; connection master; drop table t1; --source include/sync_slave_sql_with_master.inc --source include/rpl_end.inc