mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
ad126d90e0
This includes both code and test cases.
8 lines
197 B
Text
8 lines
197 B
Text
--source include/master-slave.inc
|
|
|
|
CREATE TABLE t1 (word CHAR(20) NOT NULL);
|
|
LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
|
|
SELECT * FROM t1;
|
|
sync_slave_with_master;
|
|
SELECT * FROM t1;
|
|
|