Commit e9a38a08 authored by Zardosht Kasheff's avatar Zardosht Kasheff

[t:4297], another test

git-svn-id: file:///svn/mysql/tests/mysql-test@41742 c7de825b-a66e-492c-adef-691d508d4ae1
parent a8757e5f
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;
-- 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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment