You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more information: `[GTID] <https://mariadb.com/kb/en/gtid/>`_ `[see also] <https://dev.mysql.com/doc/dev/mysql-server/latest/classbinary__log_1_1Gtid__event.html>`_
78
+
For more information: `[GTID] <https://mariadb.com/kb/en/gtid/>`_ `[see also] <https://dev.mysql.com/doc/dev/mysql-server/latest/classbinary__log_1_1Gtid__event.html>`_
61
79
62
80
:ivar commit_flag: 1byte - 00000001 = Transaction may have changes logged with SBR.
63
81
In 5.6, 5.7.0-5.7.18, and 8.0.0-8.0.1, this flag is always set. Starting in 5.7.19 and 8.0.2, this flag is cleared if the transaction only contains row events. It is set if any part of the transaction is written in statement format.
@@ -152,8 +170,8 @@ def _dump(self):
152
170
153
171
classMariadbAnnotateRowsEvent(BinLogEvent):
154
172
"""
155
-
Annotate rows event
156
-
If you want to check this binlog, change the value of the flag(line 382 of the 'binlogstream.py') option to 2
173
+
Annotate rows event
174
+
If you want to check this binlog, change the value of the flag(line 382 of the 'binlogstream.py') option to 2
157
175
https://mariadb.com/kb/en/annotate_rows_event/
158
176
159
177
:ivar sql_statement: str - The SQL statement
@@ -229,7 +247,7 @@ class XAPrepareEvent(BinLogEvent):
229
247
Like Xid_event, it contains XID of the **prepared** transaction.
230
248
231
249
For more information: `[see details] <https://dev.mysql.com/doc/refman/8.0/en/xa-statements.html>`_.
232
-
250
+
233
251
:ivar one_phase: current XA transaction commit method
234
252
:ivar xid_format_id: a number that identifies the format used by the gtrid and bqual values
235
253
:ivar xid: serialized XID representation of XA transaction (xid_gtrid + xid_bqual)
@@ -260,14 +278,14 @@ def _dump(self):
260
278
classFormatDescriptionEvent(BinLogEvent):
261
279
"""
262
280
Represents a Format Description Event in the MySQL binary log.
263
-
281
+
264
282
This event is written at the start of a binary log file for binlog version 4.
265
283
It provides the necessary information to decode subsequent events in the file.
266
284
267
285
:ivar binlog_version: int - Version of the binary log format.
268
286
:ivar mysql_version_str: str - Server's MySQL version in string format.
0 commit comments