[t:4297], another test

git-svn-id: file:///svn/mysql/tests/mysql-test@41742 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Zardosht Kasheff 2012-04-10 15:04:28 +00:00
parent e458906d73
commit 49fcd90e6c
2 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,40 @@
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';
select * from t1;
a
1
xa prepare 'a','ab';
select * from t1;
a
1
xa commit 'a','ab';
select * from t1;
a
1
xa begin 'a','ab';
insert into t1 values (2);
select * from t1;
a
1
2
xa end 'a','ab';
select * from t1;
a
1
2
xa prepare 'a','ab';
select * from t1;
a
1
2
xa rollback 'a','ab';
select * from t1;
a
1
drop table t1;

View file

@ -0,0 +1,33 @@
-- source include/have_tokudb.inc
--source include/not_5_5.inc
--disable_warnings
drop table if exists t1;
--enable_warnings
# test that simple xa commands work with TokuDB
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=tokudb;
xa begin 'a','ab';
insert into t1 values (1);
select * from t1;
xa end 'a','ab';
select * from t1;
xa prepare 'a','ab';
select * from t1;
xa commit 'a','ab';
select * from t1;
xa begin 'a','ab';
insert into t1 values (2);
select * from t1;
xa end 'a','ab';
select * from t1;
xa prepare 'a','ab';
select * from t1;
xa rollback 'a','ab';
select * from t1;
drop table t1;