mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 15:25:33 +02:00
23 lines
612 B
Text
23 lines
612 B
Text
#
|
|
# MDEV-25562 Assertion `pause_seqno_.is_undefined() == false' failed in void wsrep::server_state::resume()
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
SET SESSION WSREP_ON=0;
|
|
FLUSH TABLES WITH READ LOCK AND DISABLE CHECKPOINT;
|
|
SET SESSION WSREP_ON=1;
|
|
UNLOCK TABLES;
|
|
|
|
SET GLOBAL wsrep_ignore_apply_errors=1;
|
|
CREATE TABLE t1 (a CHAR(1)) engine=innodb;
|
|
--error ER_TABLE_EXISTS_ERROR
|
|
CREATE TABLE t1 (a CHAR(1)) engine=innodb;
|
|
SHOW PROCEDURE STATUS WHERE db = 'test';
|
|
SET GLOBAL read_only=1;
|
|
|
|
SET GLOBAL wsrep_ignore_apply_errors=DEFAULT;
|
|
SET GLOBAL read_only=DEFAULT;
|
|
DROP TABLE t1;
|
|
|