diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2018-01-22 23:35:50 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2018-01-22 23:35:50 +0200 |
commit | 6e449d1ef0c79864d150090505d5b4e555ae6ab6 (patch) | |
tree | b6119b2e18f56b79629b789cf96d665d907a95a9 /mysql-test/r/xa.result | |
parent | 431607237d0d1438cdc69f5bf5a188253d7549cf (diff) | |
parent | b20c3dc664314a3045fa31e2245d4613e9efa508 (diff) | |
download | mariadb-git-6e449d1ef0c79864d150090505d5b4e555ae6ab6.tar.gz |
Merge branch '5.5' into 10.0
Diffstat (limited to 'mysql-test/r/xa.result')
-rw-r--r-- | mysql-test/r/xa.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/xa.result b/mysql-test/r/xa.result index 6c242d950ab..0bf9b07bb2f 100644 --- a/mysql-test/r/xa.result +++ b/mysql-test/r/xa.result @@ -200,6 +200,17 @@ a 1 DROP TABLE t1; # +# MDEV-14609 XA Transction unable to ROLLBACK TO SAVEPOINT +# +CREATE TABLE t1 (c1 INT) ENGINE=INNODB; +XA START 'xa1'; +SAVEPOINT savepoint1; +INSERT INTO t1 (c1) VALUES (1),(2),(3),(4); +ROLLBACK TO SAVEPOINT savepoint1; +XA END 'xa1'; +XA ROLLBACK 'xa1'; +DROP TABLE t1; +# # Bug#12352846 - TRANS_XA_START(THD*): # ASSERTION THD->TRANSACTION.XID_STATE.XID.IS_NULL() # FAILED |