mirror of
https://github.com/MariaDB/server.git
synced 2025-04-28 06:45:23 +03:00
In main.index_merge_myisam we remove the test that was added in commit a2d24def8cc42d27c72d833abfb39ef24a2b96ba because it duplicates the test case that was added in commit 5af12e463549e4bbc2ce6ab720d78937d5e5db4e.
28 lines
633 B
Plaintext
28 lines
633 B
Plaintext
#
|
|
# Bug#20872655 XA ROLLBACK IS NOT CRASH-SAFE
|
|
#
|
|
CREATE TABLE t(a INT PRIMARY KEY, b INT UNIQUE) ENGINE=INNODB;
|
|
INSERT INTO t SET a=0;
|
|
connect con1,localhost,root;
|
|
XA START 'zombie';
|
|
INSERT INTO t SET a=1;
|
|
UPDATE t SET b=1 WHERE a=1;
|
|
SELECT COUNT(*) FROM t;
|
|
COUNT(*)
|
|
2
|
|
XA END 'zombie';
|
|
XA PREPARE 'zombie';
|
|
SET DEBUG_SYNC='trx_after_rollback_row SIGNAL s1 WAIT_FOR s2';
|
|
XA ROLLBACK 'zombie';
|
|
connection default;
|
|
SET DEBUG_SYNC='now WAIT_FOR s1';
|
|
SET GLOBAL innodb_flush_log_at_trx_commit=1;
|
|
DELETE FROM t LIMIT 1;
|
|
# restart
|
|
disconnect con1;
|
|
XA COMMIT 'zombie';
|
|
ERROR XAE04: XAER_NOTA: Unknown XID
|
|
SELECT * FROM t;
|
|
a b
|
|
DROP TABLE t;
|