mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
32
mysql-test/main/xa_binlog.test
Normal file
32
mysql-test/main/xa_binlog.test
Normal file
@ -0,0 +1,32 @@
|
||||
--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;
|
Reference in New Issue
Block a user