mariadb/mysql-test/suite/galera/r/galera_mdev_31517.result
Jan Lindström bb32acebf3 MDEV-37354 : SIGSEGV in Wsrep_server_service::release_high_priority_service | discard_streaming_applier
This issue seems to be already fixed. However, to avoid future problems:

Wsrep_server_service::release_storage_service
  Add assertion that storage service is not nullptr and
  contains thd. In production binaries add guard to
  not use nullptr.

Wsrep_server_service::release_high_priority_service
  Add assertion that high_priority service is not nullptr and
  contains thd. In production binaries add guard to
  not use nullptr.

wsrep_is_BF_lock_timeout
  Remove printing of record lock because its page might
  not be latched leading to assertion in multi-master
  testing.
2025-12-15 14:47:15 +02:00

28 lines
854 B
Text

connection node_2;
connection node_1;
# Make sure that the test is operating on the right version of galera library.
# Correct Galera library found
connection node_1;
connection node_2;
connection node_2;
CALL mtr.add_suppression("unknown variable 'non_existing_variable=ON'");
CALL mtr.add_suppression("Aborting");
CALL mtr.add_suppression("sst_received failed: State wait was interrupted");
CALL mtr.add_suppression("State transfer interrupted, shutting down gracefully");
connection node_1;
CREATE TABLE t(i INT NOT NULL PRIMARY KEY) ENGINE INNODB;
INSERT INTO t VALUES(1);
connection node_2;
connection node_1;
connection node_2;
connection node_1;
connection node_2;
connection node_1;
connection node_2;
Starting server ...
Starting server ...
SET GLOBAL wsrep_mode = DEFAULT;
connection node_1;
DROP TABLE t;
disconnect node_2;
disconnect node_1;