mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +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"
10 lines
402 B
Text
10 lines
402 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
CREATE TABLE t1 (a INT, b INT);
|
|
INSERT INTO t1 VALUES (1,10);
|
|
LOAD DATA INFILE '../../std_data/rpl_loaddata.dat' INTO TABLE t1;
|
|
call mtr.add_suppression("Slave SQL.*Fatal error: Not enough memory, error.* 1593");
|
|
include/wait_for_slave_sql_error_and_skip.inc [errno=1593]
|
|
Last_SQL_Error = 'Fatal error: Not enough memory'
|
|
DROP TABLE t1;
|
|
include/rpl_end.inc
|