mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
eb75edfb2b
This makes it clear that the error code has nothing to do with errno. mysql-test/include/mtr_warnings.sql: Fixed suppression for new slave error messages mysql-test/lib/My/Test.pm: Use 'send' instead of 'print' to avoid errors about "wrong class ... back attempt" mysql-test/lib/v1/mtr_report.pl: Fixed suppression for new slave error messages mysql-test/mysql-test-run.pl: Fixed suppression for new slave error messages Removed warning from perl 5.16.2 about arrays mysql-test/r/flush_read_lock.result: Fixed suppression for new slave error messages sql/rpl_reporting.cc: Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code"
27 lines
788 B
Text
27 lines
788 B
Text
source include/have_binlog_format_statement.inc;
|
|
source include/have_debug.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;
|
|
|
|
# Now we feed it a load data infile, which should make it stop with a
|
|
# fatal error.
|
|
connection master;
|
|
LOAD DATA INFILE '../../std_data/rpl_loaddata.dat' INTO TABLE t1;
|
|
|
|
connection slave;
|
|
call mtr.add_suppression("Slave SQL.*Fatal error: Not enough memory, error.* 1593");
|
|
let $slave_sql_errno= 1593;
|
|
let $show_slave_sql_error= 1;
|
|
source include/wait_for_slave_sql_error_and_skip.inc;
|
|
|
|
connection master;
|
|
DROP TABLE t1;
|
|
sync_slave_with_master;
|
|
|
|
--source include/rpl_end.inc
|