diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-03-10 19:28:49 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-03-10 19:28:49 +0400 |
commit | 2a667b7bcbd8be59f9eb04fe6d3d6d4099baa2c2 (patch) | |
tree | b892a0da51180ea7ed462f07d9e17d24b39bea0b /mysql-test | |
parent | 992f6754ac9a4af9b2ceb1f3fe81df44283e369b (diff) | |
download | mariadb-git-2a667b7bcbd8be59f9eb04fe6d3d6d4099baa2c2.tar.gz |
An addition to fix for
BUG#51342 - more xid crashing
Restore autocommit variable by supplying explicit value.
mysql-test/r/xa.result:
Restore autocommit variable by supplying explicit value.
mysql-test/t/xa.test:
Restore autocommit variable by supplying explicit value.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/xa.result | 2 | ||||
-rw-r--r-- | mysql-test/t/xa.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/xa.result b/mysql-test/r/xa.result index acf219688e1..cc18ed99536 100644 --- a/mysql-test/r/xa.result +++ b/mysql-test/r/xa.result @@ -90,5 +90,5 @@ INSERT INTO t1 VALUES(1); XA END 'x'; XA COMMIT 'x' ONE PHASE; DROP TABLE t1; -SET SESSION autocommit=DEFAULT; +SET SESSION autocommit=1; End of 5.0 tests diff --git a/mysql-test/t/xa.test b/mysql-test/t/xa.test index d5def009172..4871aea30e9 100644 --- a/mysql-test/t/xa.test +++ b/mysql-test/t/xa.test @@ -136,7 +136,7 @@ INSERT INTO t1 VALUES(1); XA END 'x'; XA COMMIT 'x' ONE PHASE; DROP TABLE t1; -SET SESSION autocommit=DEFAULT; +SET SESSION autocommit=1; --echo End of 5.0 tests |