mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
- Removes useless call to wsrep_xid_init() in wsrep_apply_events(). Transaction's xid is already initialized at that point. - Adds call to wsrep_set_SE_checkpoint() for committing TOI events in the applier side. - Includes test case that reproduced the issue.
11 lines
288 B
Plaintext
11 lines
288 B
Plaintext
CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES('test');
|
|
CREATE DATABASE db;
|
|
Shutting down server 2 ...
|
|
Recovering server 2 ...
|
|
Performing --wsrep-recover ...
|
|
Restarting server ...
|
|
Using --wsrep-start-position when starting mysqld ...
|
|
DROP TABLE t1;
|
|
DROP DATABASE db;
|