1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-30 05:23:50 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/xa-5.test
2016-04-26 20:56:25 +02:00

33 lines
575 B
Plaintext

-- source include/have_tokudb.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;