mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
20 lines
580 B
Text
20 lines
580 B
Text
|
source include/have_binlog_format_mixed_or_statement.inc;
|
||
|
source include/master-slave.inc;
|
||
|
|
||
|
# We do this little stunt to make sure that the slave has started
|
||
|
# before we stop it again.
|
||
|
connection master;
|
||
|
CREATE TABLE t1 (a INT, b INT);
|
||
|
INSERT INTO t1 VALUES (1,10);
|
||
|
sync_slave_with_master;
|
||
|
source include/show_slave_status.inc;
|
||
|
|
||
|
# Now we feed it a load data infile, which should make it stop with a
|
||
|
# fatal error.
|
||
|
connection master;
|
||
|
LOAD DATA INFILE '../std_data_ln/rpl_loaddata.dat' INTO TABLE t1;
|
||
|
|
||
|
connection slave;
|
||
|
wait_for_slave_to_stop;
|
||
|
source include/show_slave_status.inc;
|