mirror of
https://github.com/MariaDB/server.git
synced 2026-03-04 07:28:41 +01:00
mtr uses group suffix, but some existing inc and test files use
server_id for expect files. This patch aims to fix that.
For spider:
With this change we will not have to maintain a separate version of
restart_mysqld.inc for spider, that duplicates code, just because
spider tests use different names for expect files, and shutdown_mysqld
requires magical names for them.
With this change spider tests will also be able to use other features
provided by restart_mysqld.inc without code duplication, like the
parameter $restart_parameters (see e.g. the testcase mdev_29904.test
in commit ef1161e5d4f).
Tests run after this change: default, spider, rocksdb, galera, using
the following command
mtr --parallel=auto --force --max-test-fail=0 --skip-core-file
mtr --suite spider,spider/*,spider/*/* \
--skip-test="spider/oracle.*|.*/t\..*" --parallel=auto --big-test \
--force --max-test-fail=0 --skip-core-file
mtr --suite galera --parallel=auto
mtr --suite rocksdb --parallel=auto
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
#
|
|
# GCF-832 SR: mysql.wsrep_streaming_log table remains populated on all nodes after crash
|
|
# followed by immediate recovery
|
|
#
|
|
--source include/galera_cluster.inc
|
|
--source include/have_debug_sync.inc
|
|
|
|
--connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3
|
|
# Save original auto_increment_offset values.
|
|
--let $node_1=node_1
|
|
--let $node_2=node_2
|
|
--let $node_3=node_3
|
|
--source ../galera/include/auto_increment_offset_save.inc
|
|
|
|
--connection node_2
|
|
SET GLOBAL debug_dbug="d,crash_last_fragment_commit_after_fragment_removal";
|
|
|
|
--let $_expect_file_name= `select regexp_replace(@@tmpdir, '^.*/','')`
|
|
--let $_expect_file_name= $MYSQLTEST_VARDIR/tmp/$_expect_file_name.expect
|
|
--exec echo "wait" > $_expect_file_name
|
|
|
|
CREATE TABLE t1 (f1 VARCHAR(30)) ENGINE=InnoDB;
|
|
|
|
SET AUTOCOMMIT=OFF;
|
|
SET SESSION wsrep_trx_fragment_size=1;
|
|
START TRANSACTION;
|
|
|
|
INSERT INTO t1 VALUES ('primary'),('primary'),('primary'),('primary'),('primary');
|
|
--error 2013
|
|
COMMIT;
|
|
|
|
--source include/start_mysqld.inc
|
|
|
|
--connection node_1
|
|
SELECT COUNT(*) = 0 FROM mysql.wsrep_streaming_log;
|
|
|
|
--connection node_2
|
|
--enable_reconnect
|
|
SELECT COUNT(*) = 0 FROM mysql.wsrep_streaming_log;
|
|
|
|
DROP TABLE t1;
|
|
|
|
--source ../galera/include/auto_increment_offset_restore.inc
|