mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
MWL#116: After-review fixes.
This commit is contained in:
parent
a2d921be36
commit
bc9f6021ff
14 changed files with 187 additions and 124 deletions
32
mysql-test/t/xa_binlog.test
Normal file
32
mysql-test/t/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/
|
||||
SHOW BINLOG EVENTS LIMIT 1,9;
|
||||
|
||||
DROP TABLE t1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue