mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
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_dbug="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_dbug="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_dbug="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_dbug="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_dbug="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;
|