diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-03-10 16:26:39 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-03-10 16:26:39 +0400 |
commit | 680cc263ec23264c4a659dfd3c8c9a541670ffa4 (patch) | |
tree | 5f4671ae771c04d2e81f96f1379732be95dcb817 /mysql-test/t/xa.test | |
parent | e48779e92911bcc9f68777ce35e7bd981e7f3c27 (diff) | |
parent | 992f6754ac9a4af9b2ceb1f3fe81df44283e369b (diff) | |
download | mariadb-git-680cc263ec23264c4a659dfd3c8c9a541670ffa4.tar.gz |
Merge fix for BUG51342 to 5.1-bugteam.
Diffstat (limited to 'mysql-test/t/xa.test')
-rw-r--r-- | mysql-test/t/xa.test | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/t/xa.test b/mysql-test/t/xa.test index f84d822170f..9eeb3017881 100644 --- a/mysql-test/t/xa.test +++ b/mysql-test/t/xa.test @@ -122,6 +122,22 @@ xa start 'a','c'; --connection default drop table t1; +--echo # +--echo # BUG#51342 - more xid crashing +--echo # +CREATE TABLE t1(a INT) ENGINE=InnoDB; +XA START 'x'; +SET SESSION autocommit=0; +INSERT INTO t1 VALUES(1); +--error ER_XAER_RMFAIL +SET SESSION autocommit=1; +SELECT @@autocommit; +INSERT INTO t1 VALUES(1); +XA END 'x'; +XA COMMIT 'x' ONE PHASE; +DROP TABLE t1; +SET SESSION autocommit=DEFAULT; + --echo End of 5.0 tests # |