summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/xa_recovery.result
blob: 0ddfd9c329874a47c90581bfd291c43d67cc137e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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");
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;