From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/suite/rpl/r/rpl_loaddata_symlink.result | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 mysql-test/suite/rpl/r/rpl_loaddata_symlink.result (limited to 'mysql-test/suite/rpl/r/rpl_loaddata_symlink.result') 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 -- cgit v1.2.3