mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
dbde64c6cd
git-svn-id: file:///svn/mysql/tests/mysql-test@41756 c7de825b-a66e-492c-adef-691d508d4ae1
75 lines
1.7 KiB
Text
75 lines
1.7 KiB
Text
drop table if exists t1;
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=tokudb;
|
|
xa begin 'a','ab';
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
1
|
|
xa end 'a','ab';
|
|
SET SESSION debug="d,tokudb_crash_prepare_before";
|
|
xa prepare 'a','ab';
|
|
ERROR HY000: Lost connection to MySQL server during query
|
|
xa commit'a','ab';
|
|
ERROR XAE04: XAER_NOTA: Unknown XID
|
|
drop table t1;
|
|
CALL mtr.add_suppression("Found 1 prepared XA transactions");
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=tokudb;
|
|
xa begin 'a','ab';
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
1
|
|
xa end 'a','ab';
|
|
SET SESSION debug="d,tokudb_crash_prepare_after";
|
|
xa prepare 'a','ab';
|
|
ERROR HY000: Lost connection to MySQL server during query
|
|
xa commit 'a','ab';
|
|
select * from t1;
|
|
a
|
|
1
|
|
drop table t1;
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=tokudb;
|
|
xa begin 'a','ab';
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
1
|
|
xa end 'a','ab';
|
|
SET SESSION debug="d,tokudb_crash_prepare_after";
|
|
xa prepare 'a','ab';
|
|
ERROR HY000: Lost connection to MySQL server during query
|
|
xa rollback 'a','ab';
|
|
select * from t1;
|
|
a
|
|
drop table t1;
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=tokudb;
|
|
xa begin 'a','ab';
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
1
|
|
xa end 'a','ab';
|
|
SET SESSION debug="d,tokudb_crash_commit_before";
|
|
xa prepare 'a','ab';
|
|
xa commit 'a','ab';
|
|
ERROR HY000: Lost connection to MySQL server during query
|
|
xa commit 'a','ab';
|
|
select * from t1;
|
|
a
|
|
1
|
|
drop table t1;
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=tokudb;
|
|
xa begin 'a','ab';
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
1
|
|
xa end 'a','ab';
|
|
SET SESSION debug="d,tokudb_crash_commit_before";
|
|
xa prepare 'a','ab';
|
|
xa commit 'a','ab';
|
|
ERROR HY000: Lost connection to MySQL server during query
|
|
xa rollback 'a','ab';
|
|
select * from t1;
|
|
a
|
|
drop table t1;
|