mirror of
https://github.com/MariaDB/server.git
synced 2025-11-19 19:03:26 +03:00
- ensure that mtr supressions table is flushed before doing controlled crash and restart - use DBUG_SUICIDE() rather than abort() in partition tests - avoids a crash message/warning - disable perfschema all_instances test on Windows- there are legitimate reasons for output to be different on Unix (some different threads, some different locks), the differences are expected to grow in the future, e.g with threadpool.
59 lines
912 B
Plaintext
59 lines
912 B
Plaintext
call mtr.add_suppression("Found 3 prepared XA transactions");
|
|
FLUSH TABLES;
|
|
CREATE TABLE t(a INT PRIMARY KEY, b INT)ENGINE=InnoDB;
|
|
INSERT INTO t VALUES(2,2),(4,4),(8,8),(16,16),(32,32);
|
|
COMMIT;
|
|
XA START '123';
|
|
INSERT INTO t VALUES(1,1);
|
|
XA END '123';
|
|
XA PREPARE '123';
|
|
XA START '456';
|
|
INSERT INTO t VALUES(3,47),(5,67);
|
|
UPDATE t SET b=2*b WHERE a BETWEEN 5 AND 8;
|
|
XA END '456';
|
|
XA PREPARE '456';
|
|
XA START '789';
|
|
UPDATE t SET b=4*a WHERE a=32;
|
|
XA END '789';
|
|
XA PREPARE '789';
|
|
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
|
|
SELECT * FROM t;
|
|
a b
|
|
1 1
|
|
2 2
|
|
3 47
|
|
4 4
|
|
5 134
|
|
8 16
|
|
16 16
|
|
32 128
|
|
COMMIT;
|
|
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
|
|
SELECT * FROM t;
|
|
a b
|
|
1 1
|
|
2 2
|
|
3 47
|
|
4 4
|
|
5 134
|
|
8 16
|
|
16 16
|
|
32 128
|
|
COMMIT;
|
|
XA RECOVER;
|
|
formatID gtrid_length bqual_length data
|
|
1 3 0 789
|
|
1 3 0 456
|
|
1 3 0 123
|
|
XA ROLLBACK '123';
|
|
XA ROLLBACK '456';
|
|
XA COMMIT '789';
|
|
SELECT * FROM t;
|
|
a b
|
|
2 2
|
|
4 4
|
|
8 8
|
|
16 16
|
|
32 128
|
|
DROP TABLE t;
|