summaryrefslogtreecommitdiff
path: root/mysql-test/main/xa_binlog.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/xa_binlog.test')
-rw-r--r--mysql-test/main/xa_binlog.test32
1 files changed, 32 insertions, 0 deletions
diff --git a/mysql-test/main/xa_binlog.test b/mysql-test/main/xa_binlog.test
new file mode 100644
index 00000000000..ecbf1f4f066
--- /dev/null
+++ b/mysql-test/main/xa_binlog.test
@@ -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;