mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
32 lines
647 B
Text
32 lines
647 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/ /GTID [0-9]+-[0-9]+-[0-9]+/GTID #-#-#/
|
|
SHOW BINLOG EVENTS LIMIT 3,9;
|
|
|
|
DROP TABLE t1;
|