summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_loaddata_symlink.result
blob: c3b3c2232a60575a3c5fd7383d4885a66ecafcdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include/master-slave.inc
[connection master]
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;
a	b
1	10
2	15
select * from t1;
a	b
1	10
2	15
drop table t1;
include/rpl_end.inc