-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathbinlog_xa_empty_rollback.result
223 lines (223 loc) · 5.37 KB
/
binlog_xa_empty_rollback.result
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
RESET BINARY LOGS AND GTIDS;
#
# USE-CASE 1 - rollback empty transaction as first statement and GTID_NEXT
# set to autotmatic:
#
include/rpl/save_binlog_file_position.inc
#
# S1. Set GTID_NEXT to 'AUTOMATIC'.
#
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S2. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S3. Rollback the XA transaction.
#
XA ROLLBACK 'trx';
#
# S4. Check binlog for related event (should not be found).
#
include/rpl/save_binlog_file_position.inc
include/assert.inc [Empty transaction, binlog position is the same]
#
# S5. Check for an unchanged GTID_EXECUTED set.
#
include/assert.inc [GTID_EXECUTED has not changed]
#
# USE-CASE 2 - rollback empty transaction as first statement and GTID_NEXT
# set to specific UUID:
#
include/rpl/save_binlog_file_position.inc
#
# S1. Set GTID_NEXT to a specific UUID.
#
SET @@SESSION.GTID_NEXT= 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:1';
#
# S2. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S3. Rollback the XA transaction.
#
XA ROLLBACK 'trx';
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S4. Check binlog for related event (should not be found).
#
include/rpl/save_binlog_file_position.inc
include/assert.inc [Empty transaction, binlog position is the same]
#
# S5. Check GTID_EXECUTED for the specific UUID (should not be found).
#
include/assert.inc [Transaction is NOT present in GTID_EXECUTED]
#
# USE-CASE 3 - start with GTID_NEXT set to a specific UUID and rollback empty
# transaction after XA COMMIT ... ONE PHASE and GTID_NEXT set to a specific
# UUID:
#
#
# S1. Set GTID_NEXT to a specific UUID.
#
SET @@SESSION.GTID_NEXT= 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:2';
#
# S2. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S3. Commit the XA transaction with 'XA COMMIT ... ONE PHASE'.
#
XA COMMIT 'trx' ONE PHASE;
include/rpl/save_binlog_file_position.inc
#
# S4. Set GTID_NEXT to a specific UUID.
#
SET @@SESSION.GTID_NEXT= 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:3';
#
# S5. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S6. Rollback the XA transaction.
#
XA ROLLBACK 'trx';
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S7. Check binlog for related event (should not be found).
#
include/rpl/save_binlog_file_position.inc
include/assert.inc [Empty transaction, binlog position is the same]
#
# S8. Check GTID_EXECUTED for the specific UUID (should not be found).
#
include/assert.inc [Transaction is NOT present in GTID_EXECUTED]
#
# USE-CASE 4 - start with GTID_NEXT set to 'AUTOMATIC' and rollback empty
# transaction after XA COMMIT ... ONE PHASE and GTID_NEXT set to a specific
# UUID:
#
#
# S1. Set GTID_NEXT to 'AUTOMATIC'.
#
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S2. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S3. Commit the XA transaction with 'XA COMMIT ... ONE PHASE'.
#
XA COMMIT 'trx' ONE PHASE;
include/rpl/save_binlog_file_position.inc
#
# S4. Set GTID_NEXT to a specific UUID.
#
SET @@SESSION.GTID_NEXT= 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:4';
#
# S5. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S6. Rollback the XA transaction.
#
XA ROLLBACK 'trx';
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S7. Check binlog for related event (should not be found).
#
include/rpl/save_binlog_file_position.inc
include/assert.inc [Empty transaction, binlog position is the same]
#
# S8. Check GTID_EXECUTED for the specific UUID (should not be found).
#
include/assert.inc [Transaction is NOT present in GTID_EXECUTED]
#
# USE-CASE 5 - rollback empty transaction after XA PREPARE and XA COMMIT and
# GTID_NEXT set to a specific UUID:
#
#
# S1. Set GTID_NEXT to 'AUTOMATIC'.
#
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S2. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S3. Commit the XA transaction with 'XA PREPARE' and 'XA COMMIT'.
#
XA PREPARE 'trx';
XA COMMIT 'trx';
include/rpl/save_binlog_file_position.inc
#
# S4. Set GTID_NEXT to a specific UUID.
#
SET @@SESSION.GTID_NEXT= 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:5';
#
# S5. Start and end an XA transaction.
#
XA START 'trx';
XA END 'trx';
#
# S6. Rollback the XA transaction.
#
XA ROLLBACK 'trx';
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S7. Check binlog for related event (should not be found).
#
include/rpl/save_binlog_file_position.inc
include/assert.inc [Empty transaction, binlog position is the same]
#
# S8. Check GTID_EXECUTED for the specific UUID (should not be found).
#
include/assert.inc [Transaction is NOT present in GTID_EXECUTED]
#
# USE-CASE 6 - ensure that non-empty XA transactions are logged and
# GITD-executed even if they are rolled back with XA ROLLBACK:
#
#
# S1. Create a table
#
CREATE TABLE t (a INT);
#
# S2. Set GTID_NEXT to a 'AUTOMATIC'.
#
SET @@SESSION.GTID_NEXT= 'AUTOMATIC';
#
# S3. Start an XA transaction.
#
XA START 'trx';
#
# s4. Insert values into created table.
#
INSERT INTO t VALUES (1), (2), (3);
#
# S5. End the XA transaction.
#
XA END 'trx';
#
# S6. Prepare the XA transaction.
#
XA PREPARE 'trx';
#
# S7. Rollback the XA transaction.
#
XA ROLLBACK 'trx';
#
# S8. Check binlog for related event (should be found).
#
include/rpl/assert_binlog_events.inc [Gtid/SET.* # Query/use.* # Gtid/SET.* # Query/XA START.* # Table_map/.* # Write_rows/.* # Query/XA END.* # XA_prepare/XA PREPARE.* # Gtid/SET.* # Query/XA ROLLBACK.*]
#
# S9. Check GTID_EXECUTED for the executed UUID (should be found).
#
include/assert.inc [Transaction is present in GTID_EXECUTED]
DROP TABLE t;