1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-03 20:43:11 +03:00

An addition to fix for

BUG#51342 - more xid crashing

Restore autocommit variable by supplying explicit value.
This commit is contained in:
Sergey Vojtovich
2010-03-10 19:28:49 +04:00
parent f4fe07f21f
commit 774cba9505
2 changed files with 2 additions and 2 deletions

View File

@@ -90,5 +90,5 @@ INSERT INTO t1 VALUES(1);
XA END 'x'; XA END 'x';
XA COMMIT 'x' ONE PHASE; XA COMMIT 'x' ONE PHASE;
DROP TABLE t1; DROP TABLE t1;
SET SESSION autocommit=DEFAULT; SET SESSION autocommit=1;
End of 5.0 tests End of 5.0 tests

View File

@@ -136,7 +136,7 @@ INSERT INTO t1 VALUES(1);
XA END 'x'; XA END 'x';
XA COMMIT 'x' ONE PHASE; XA COMMIT 'x' ONE PHASE;
DROP TABLE t1; DROP TABLE t1;
SET SESSION autocommit=DEFAULT; SET SESSION autocommit=1;
--echo End of 5.0 tests --echo End of 5.0 tests