mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
33 lines
608 B
Text
33 lines
608 B
Text
|
--source include/have_innodb.inc
|
||
|
--source include/have_log_bin.inc
|
||
|
|
||
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
||
|
|
||
|
# Fix binlog format (otherwise SHOW BINLOG EVENTS will fluctuate).
|
||
|
SET binlog_format= mixed;
|
||
|
|
||
|
RESET MASTER;
|
||
|
|
||
|
XA START 'xatest';
|
||
|
INSERT INTO t1 VALUES (1);
|
||
|
XA END 'xatest';
|
||
|
XA PREPARE 'xatest';
|
||
|
XA COMMIT 'xatest';
|
||
|
|
||
|
XA START 'xatest';
|
||
|
INSERT INTO t1 VALUES (2);
|
||
|
XA END 'xatest';
|
||
|
XA COMMIT 'xatest' ONE PHASE;
|
||
|
|
||
|
BEGIN;
|
||
|
INSERT INTO t1 VALUES (3);
|
||
|
COMMIT;
|
||
|
|
||
|
SELECT * FROM t1 ORDER BY a;
|
||
|
|
||
|
--replace_column 2 # 5 #
|
||
|
--replace_regex /xid=[0-9]+/xid=XX/
|
||
|
SHOW BINLOG EVENTS LIMIT 1,9;
|
||
|
|
||
|
DROP TABLE t1;
|