mirror of
https://github.com/MariaDB/server.git
synced 2025-12-12 08:01:43 +03:00
Some of the test cases reference to binlog position and these position numbers are written into result explicitly. It is difficult to maintain if log event format changes. There are a couple of cases explicit position number appears, we handle them in different ways A. 'CHANGE MASTER ...' with MASTER_LOG_POS or/and RELAY_LOG_POS options Use --replace_result to mask them. B. 'SHOW BINLOG EVENT ...' Replaced by show_binlog_events.inc or wait_for_binlog_event.inc. show_binlog_events.inc file's function is enhanced by given $binlog_file and $binlog_limit. C. 'SHOW SLAVE STATUS', 'show_slave_status.inc' and 'show_slave_status2.inc' For the test cases just care a few items in the result of 'SHOW SLAVE STATUS', only the items related to each test case are showed. 'show_slave_status.inc' is rebuild, only the given items in $status_items will be showed. 'check_slave_is_running.inc' and 'check_slave_no_error.inc' and 'check_slave_param.inc' are auxiliary files helping to show running status and error information easily.
61 lines
2.0 KiB
Plaintext
61 lines
2.0 KiB
Plaintext
##########################################################################
|
|
# This test verifies if the slave fails gracefully when the temporary
|
|
# file used to load data is removed while it is about to be used it.
|
|
# Similar errors are caught if the temporary directory is removed.
|
|
#
|
|
# Steps:
|
|
# 1 - Creates a table and populates it through "LOAD DATA INFILE".
|
|
# 2 - Catches error.
|
|
##########################################################################
|
|
|
|
--source include/have_binlog_format_mixed_or_statement.inc
|
|
--source include/have_innodb.inc
|
|
--source include/have_debug.inc
|
|
--source include/master-slave.inc
|
|
--source include/not_embedded.inc
|
|
|
|
##########################################################################
|
|
# Loading data
|
|
##########################################################################
|
|
connection master;
|
|
|
|
create table t1(a int not null auto_increment, b int, primary key(a)) engine=innodb;
|
|
|
|
start transaction;
|
|
insert into t1(b) values (1);
|
|
insert into t1(b) values (2);
|
|
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
|
commit;
|
|
|
|
##########################################################################
|
|
# Catch Error
|
|
##########################################################################
|
|
connection slave;
|
|
source include/wait_for_slave_sql_to_stop.inc;
|
|
|
|
--let $error= query_get_value(SHOW SLAVE STATUS, Last_Errno, 1)
|
|
# windows and linux different error numbers here:
|
|
# Windows:
|
|
# - Last_Errno 29 (File not found)
|
|
# Unix like OS:
|
|
# - Last_Errno 13 (Can't stat file)
|
|
--let $assertion= `SELECT $error=29 OR $error=13`
|
|
if (!$assertion)
|
|
{
|
|
--echo UNEXPECTED ERROR NUMBER: $error
|
|
}
|
|
|
|
##########################################################################
|
|
# Clean up
|
|
##########################################################################
|
|
connection master;
|
|
|
|
drop table t1;
|
|
|
|
connection slave;
|
|
|
|
drop table t1;
|
|
|
|
call mtr.add_suppression("Slave: Can't get stat of .*");
|
|
call mtr.add_suppression("Slave: File.* not found.*");
|