1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
###############################################################################
# This test script is to check the behaviour of applying XA transaction from
# a binlog dump if the XA transaction split across binary logs.
#
# Steps to reproduce:
# 1) Reset the master and set max_binlog_size to a smaller value 4KB.
# 2) Start a XA transaction which is more than max_binlog_size (4KB).
# 3) Prepare the XA trx.
# (trx content will be written to binlog.000001 and the binlog
# will be rotated because of the size limit).
# 4) Commit the XA trx (commit will be written to binlog2).
# 5) Save the binlog dump for the reapply purpose.
# 6) Cleanup the server and make it ready to apply the binlog dump.
# 7) Apply the binlog dump.
# 8) Verify that the old data is restorted properly without any issues.
# 9) Cleanup.
###############################################################################
--source include/have_binlog_format_row.inc
# this test requires creating a large binlog that triggers rotation
# with compression turned on this is not deterministic
--source include/not_binlog_transaction_compression_on.inc
--let $MYSQLD_DATADIR= `select @@datadir`
--echo #
--echo # 1) Reset the master and set max_binlog_size to a smaller value 4KB.
--echo #
SET @save_max_binlog_size=@@global.max_binlog_size;
SET GLOBAL max_binlog_size=4096;
RESET MASTER;
--echo #
--echo # 2) Start a XA transaction which is more than max_binlog_size (4KB).
--echo #
CREATE TABLE t1(i varchar(4096));
XA START 'xa1';
INSERT INTO t1 VALUES (REPEAT('a', 4096));
XA END 'xa1';
--echo #
--echo # 3) Prepare the XA trx.
--echo # (trx content will be written to binlog.000001 and the binlog
--echo # will be rotated because of the size limit).
XA PREPARE 'xa1';
--echo #
--echo # 4) Commit the XA trx (commit will be written to binlog.000002).
--echo #
XA COMMIT 'xa1';
--echo #
--echo # 5) Save the binlog dump for the reapply purpose.
--echo #
--exec $MYSQL_BINLOG --force-if-open $MYSQLD_DATADIR/binlog.000001 > $MYSQLTEST_VARDIR/tmp/xa_trx_part1.sql
--exec $MYSQL_BINLOG --force-if-open $MYSQLD_DATADIR/binlog.000002 > $MYSQLTEST_VARDIR/tmp/xa_trx_part2.sql
--echo #
--echo # 6) Cleanup the server and make it ready to apply the binlog dump.
--echo #
RENAME TABLE t1 TO t2;
RESET MASTER;
--echo #
--echo # 7) Apply the binlog dump.
--echo #
--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/xa_trx_part1.sql
--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/xa_trx_part2.sql
--echo #
--echo # 8) Verify that the old data is restorted properly without any issues.
--echo #
--let $diff_tables=default:t1, default:t2
--source include/diff_tables.inc
--echo #
--echo # 9) Cleanup
--echo #
DROP TABLE t1,t2;
SET GLOBAL max_binlog_size=@save_max_binlog_size;
--remove_file $MYSQLTEST_VARDIR/tmp/xa_trx_part1.sql
--remove_file $MYSQLTEST_VARDIR/tmp/xa_trx_part2.sql
|