diff options
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_loaddata_symlink.result')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_loaddata_symlink.result | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_loaddata_symlink.result b/mysql-test/suite/rpl/r/rpl_loaddata_symlink.result new file mode 100644 index 00000000..0a7c255c --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_loaddata_symlink.result @@ -0,0 +1,18 @@ +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 +connection slave; +connection slave; +select * from t1; +a b +1 10 +2 15 +connection master; +drop table t1; +connection slave; +include/rpl_end.inc |