File: binlog_xa_trx_split_across_binlog.result

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (42 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download
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
#
# 1) Reset the master and set max_binlog_size to a smaller value 4KB.
#
SET @save_max_binlog_size=@@global.max_binlog_size;
SET GLOBAL max_binlog_size=4096;
RESET MASTER;
#
# 2) Start a XA transaction which is more than max_binlog_size (4KB).
#
CREATE TABLE t1(i varchar(4096));
XA START 'xa1';
INSERT INTO t1 VALUES (REPEAT('a', 4096));
XA END 'xa1';
#
# 3) Prepare the XA trx.
#    (trx content will be written to binlog.000001 and the binlog
#     will be rotated because of the size limit).
XA PREPARE 'xa1';
#
# 4) Commit the XA trx (commit will be written to binlog.000002).
#
XA COMMIT 'xa1';
#
# 5) Save the binlog dump for the reapply purpose.
#
#
# 6) Cleanup the server and make it ready to apply the binlog dump.
#
RENAME TABLE t1 TO t2;
RESET MASTER;
#
# 7) Apply the binlog dump.
#
#
# 8) Verify that the old data is restorted properly without any issues.
#
include/diff_tables.inc [default:t1, default:t2]
#
# 9) Cleanup
#
DROP TABLE t1,t2;
SET GLOBAL max_binlog_size=@save_max_binlog_size;