mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Most notably, this includes MDEV-11623, which includes a fix and an upgrade procedure for the InnoDB file format incompatibility that is present in MariaDB Server 10.1.0 through 10.1.20. In other words, this merge should address MDEV-11202 InnoDB 10.1 -> 10.2 migration does not work
25 lines
504 B
Plaintext
25 lines
504 B
Plaintext
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
connect con1,localhost,root;
|
|
XA START 'x';
|
|
UPDATE t1 set a=2;
|
|
XA END 'x';
|
|
XA PREPARE 'x';
|
|
connection default;
|
|
call mtr.add_suppression("Found 1 prepared XA transactions");
|
|
# Kill the server
|
|
disconnect con1;
|
|
connect con1,localhost,root;
|
|
SELECT * FROM t1 LOCK IN SHARE MODE;
|
|
connection default;
|
|
disconnect con1;
|
|
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
|
|
SELECT * FROM t1;
|
|
a
|
|
2
|
|
XA ROLLBACK 'x';
|
|
SELECT * FROM t1;
|
|
a
|
|
1
|
|
DROP TABLE t1;
|