mariadb/mysql-test/suite/binlog/t/binlog_truncate_multi_engine.inc
Andrei 8f87023d3f MDEV-28777 binlog.binlog_truncate_multi_engine failed in bb with Lost connection
The 2013 error was right to catch the case B of the test unprepared
for an expected simulated crash.

The test gets refined to SELECT a (type of) bool value before the
crash is invoked.
2023-04-17 20:07:37 +03:00

75 lines
1.8 KiB
PHP

#
# Invoked by binlog_truncate_multi_engine.test
# Parameters:
# $debug_sync_action describes debug-sync actions
# $kill_server 1 when to crash, 0 for regular restart
# $restart_parameters the caller may simulate partial commit at recovery
# $test_outcome summary of extected results
# $MYSQLD_DATADIR
--echo #
--echo #
--echo # Case $case : $description
--echo #
RESET MASTER;
FLUSH LOGS;
SET GLOBAL max_binlog_size= 4096;
connect(con1,localhost,root,,);
--echo List of binary logs before rotation
--source include/show_binary_logs.inc
INSERT INTO t1 VALUES (1, REPEAT("x", 1));
INSERT INTO t2 VALUES (1, REPEAT("x", 1));
--let $is_case_B=`SELECT $case = "B"`
if ($is_case_B)
{
--write_file $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
wait-binlog_truncate_multi_engine.test
EOF
SET GLOBAL debug_dbug="d,enable_log_write_upto_crash";
}
BEGIN;
INSERT INTO t2 VALUES (2, REPEAT("x", 4100));
INSERT INTO t1 VALUES (2, REPEAT("x", 4100));
if (`SELECT $debug_sync_action != ""`)
{
--eval SET DEBUG_SYNC= $debug_sync_action
}
send COMMIT;
--connection default
if ($is_case_B)
{
--source include/wait_until_disconnected.inc
--source include/start_mysqld.inc
}
if (!$is_case_B)
{
SET DEBUG_SYNC= "now WAIT_FOR con1_ready";
--echo List of binary logs after rotation
--source include/show_binary_logs.inc
--echo # restart the server with $restart_parameters
--echo # the server is restarted
--source include/restart_mysqld.inc
}
--connection default
--echo #
--echo # *** Summary: $test_outcome:
--echo #
SELECT COUNT(*) FROM t1;
SELECT COUNT(*) FROM t2;
SELECT @@GLOBAL.gtid_binlog_state;
SELECT @@GLOBAL.gtid_binlog_pos;
--echo List of binary logs at the end of the tests
--source include/show_binary_logs.inc
--echo # ***
# cleanup
DELETE FROM t1;
DELETE FROM t2;
--disconnect con1
--echo #