MySQL 8.0.40
Source Code Documentation
|
Transaction undo log. More...
#include "mtr0mtr.h"
#include "page0types.h"
#include "sql/xa.h"
#include "trx0sys.h"
#include "trx0types.h"
#include "trx0xa.h"
#include "univ.i"
#include "trx0undo.ic"
Go to the source code of this file.
Classes | |
struct | trx_undo_t |
Transaction undo log memory object; this is protected by the undo_mutex in the corresponding transaction object. More... | |
Namespaces | |
namespace | undo |
Macros | |
#define | TRX_UNDO_PAGE_REUSE_LIMIT (3 * UNIV_PAGE_SIZE / 4) |
An update undo segment with just one page can be reused if it has at most this many bytes used; we must leave space at least for one new undo log header on the page. More... | |
Functions | |
static bool | trx_undo_roll_ptr_is_insert (roll_ptr_t roll_ptr) |
Returns true if the roll pointer is of the insert type. More... | |
static bool | trx_undo_trx_id_is_insert (const byte *trx_id) |
Returns true if the record is of the insert type. More... | |
static void | trx_write_roll_ptr (byte *ptr, roll_ptr_t roll_ptr) |
Writes a roll ptr to an index page. More... | |
static roll_ptr_t | trx_read_roll_ptr (const byte *ptr) |
Reads a roll ptr from an index page. More... | |
static page_t * | trx_undo_page_get (const page_id_t &page_id, const page_size_t &page_size, mtr_t *mtr) |
Gets an undo log page and x-latches it. More... | |
static page_t * | trx_undo_page_get_s_latched (const page_id_t &page_id, const page_size_t &page_size, mtr_t *mtr) |
Gets an undo log page and s-latches it. More... | |
static trx_undo_rec_t * | trx_undo_page_get_prev_rec (trx_undo_rec_t *rec, page_no_t page_no, ulint offset) |
Returns the previous undo record on the page in the specified log, or NULL if none exists. More... | |
static trx_undo_rec_t * | trx_undo_page_get_next_rec (trx_undo_rec_t *rec, page_no_t page_no, ulint offset) |
Returns the next undo log record on the page in the specified log, or NULL if none exists. More... | |
static trx_undo_rec_t * | trx_undo_page_get_last_rec (page_t *undo_page, page_no_t page_no, ulint offset) |
Returns the last undo record on the page in the specified undo log, or NULL if none exists. More... | |
static trx_undo_rec_t * | trx_undo_page_get_first_rec (page_t *undo_page, page_no_t page_no, ulint offset) |
Returns the first undo record on the page in the specified undo log, or NULL if none exists. More... | |
trx_undo_rec_t * | trx_undo_get_prev_rec (trx_undo_rec_t *rec, page_no_t page_no, ulint offset, bool shared, mtr_t *mtr) |
Gets the previous record in an undo log. More... | |
trx_undo_rec_t * | trx_undo_get_next_rec (trx_undo_rec_t *rec, page_no_t page_no, ulint offset, mtr_t *mtr) |
Gets the next record in an undo log. More... | |
trx_undo_rec_t * | trx_undo_get_first_rec (trx_id_t *modifier_trx_id, space_id_t space, const page_size_t &page_size, page_no_t page_no, ulint offset, ulint mode, mtr_t *mtr) |
Gets the first record in an undo log. More... | |
buf_block_t * | trx_undo_add_page (trx_t *trx, trx_undo_t *undo, trx_undo_ptr_t *undo_ptr, mtr_t *mtr) |
Tries to add a page to the undo log segment where the undo log is placed. More... | |
void | trx_undo_free_last_page_func (const trx_t *trx, trx_undo_t *undo, mtr_t *mtr) |
Frees the last undo log page. More... | |
static void | trx_undo_free_last_page (const trx_t *trx, trx_undo_t *undo, mtr_t *mtr) |
void | trx_undo_truncate_end_func (const trx_t *trx, trx_undo_t *undo, undo_no_t limit) |
Truncates an undo log from the end. More... | |
static void | trx_undo_truncate_end (const trx_t *trx, trx_undo_t *undo, undo_no_t limit) |
void | trx_undo_truncate_start (trx_rseg_t *rseg, page_no_t hdr_page_no, ulint hdr_offset, undo_no_t limit) |
Truncate the head of an undo log. More... | |
ulint | trx_undo_lists_init (trx_rseg_t *rseg) |
Initializes the undo log lists for a rollback segment memory copy. More... | |
dberr_t | trx_undo_assign_undo (trx_t *trx, trx_undo_ptr_t *undo_ptr, ulint type) |
Assigns an undo log for a transaction. More... | |
page_t * | trx_undo_set_state_at_finish (trx_undo_t *undo, mtr_t *mtr) |
Sets the state of the undo log segment at a transaction finish. More... | |
page_t * | trx_undo_set_state_at_prepare (trx_t *trx, trx_undo_t *undo, bool rollback, mtr_t *mtr) |
Set the state of the undo log segment at a XA PREPARE or XA ROLLBACK. More... | |
page_t * | trx_undo_set_prepared_in_tc (trx_t *trx, trx_undo_t *undo, mtr_t *mtr) |
Set the state of the undo log segment as prepared in TC. More... | |
void | trx_undo_update_cleanup (trx_t *trx, trx_undo_ptr_t *undo_ptr, page_t *undo_page, bool update_rseg_history_len, ulint n_added_logs, mtr_t *mtr) |
Adds the update undo log header as the first in the history list, and frees the memory object, or puts it to the list of cached update undo log segments. More... | |
void | trx_undo_insert_cleanup (trx_undo_ptr_t *undo_ptr, bool noredo) |
Frees an insert undo log after a transaction commit or rollback. More... | |
void | trx_undo_free_trx_with_prepared_or_active_logs (trx_t *trx, bool prepared) UNIV_COLD |
At shutdown, frees the undo logs of a transaction which was either PREPARED or (ACTIVE and recovered). More... | |
bool | trx_undo_truncate_tablespace (undo::Tablespace *marked_space) |
Truncate UNDO tablespace, reinitialize header and rseg. More... | |
byte * | trx_undo_parse_page_init (const byte *ptr, const byte *end_ptr, page_t *page, mtr_t *mtr) |
Parses the redo log entry of an undo log page initialization. More... | |
byte * | trx_undo_parse_page_header (mlog_id_t type, const byte *ptr, const byte *end_ptr, page_t *page, mtr_t *mtr) |
Parse the redo log entry of an undo log page header create or reuse. More... | |
void | trx_undo_mem_free (trx_undo_t *undo) |
Frees an undo log memory copy. More... | |
dberr_t | trx_undo_gtid_add_update_undo (trx_t *trx, bool prepare, bool rollback) |
For saving GTID add update undo slot, if required. More... | |
void | trx_undo_gtid_set (trx_t *trx, trx_undo_t *undo, bool is_xa_prepare) |
Set GTID flag in undo if transaction has GTID/. More... | |
void | trx_undo_gtid_read_and_persist (trx_ulogf_t *undo_log) |
Read and persist GTID from undo header during recovery. More... | |
void | trx_undo_gtid_write (trx_t *trx, trx_ulogf_t *undo_header, trx_undo_t *undo, mtr_t *mtr, bool is_xa_prepare) |
Write GTID information to undo log header. More... | |
Variables | |
constexpr uint32_t | TRX_UNDO_INSERT = 1 |
Types of an undo log segment. More... | |
constexpr uint32_t | TRX_UNDO_UPDATE = 2 |
contains undo entries for updates and delete markings: in short, modifys (the name 'UPDATE' is a historical relic) More... | |
constexpr uint32_t | TRX_UNDO_ACTIVE = 1 |
contains an undo log of an active transaction More... | |
constexpr uint32_t | TRX_UNDO_CACHED = 2 |
cached for quick reuse More... | |
constexpr uint32_t | TRX_UNDO_TO_FREE = 3 |
insert undo segment can be freed More... | |
constexpr uint32_t | TRX_UNDO_TO_PURGE = 4 |
update undo segment will not be reused: it can be freed in purge when all undo data in it is removed More... | |
constexpr uint32_t | TRX_UNDO_PREPARED_80028 = 5 |
contains an undo log of an prepared transaction for a server version older than 8.0.29 More... | |
constexpr uint32_t | TRX_UNDO_PREPARED = 6 |
contains an undo log of an prepared transaction More... | |
constexpr uint32_t | TRX_UNDO_PREPARED_IN_TC = 7 |
constexpr uint32_t | TRX_UNDO_PAGE_HDR = FSEG_PAGE_DATA |
The offset of the undo log page header on pages of the undo log. More... | |
constexpr uint32_t | TRX_UNDO_SEG_HDR |
The offset of the undo log segment header on the first page of the undo log segment. More... | |
constexpr uint32_t | TRX_UNDO_LOG_GTID_VERSION = TRX_UNDO_LOG_XA_HDR_SIZE |
GTID version offset. More... | |
constexpr uint32_t | TRX_UNDO_LOG_GTID = TRX_UNDO_LOG_XA_HDR_SIZE + 1 |
GTID offset. More... | |
constexpr uint32_t | TRX_UNDO_LOG_GTID_LEN = 64 |
Total length of GTID. More... | |
constexpr uint32_t | TRX_UNDO_LOG_GTID_HDR_SIZE |
Total size with GTID information. More... | |
constexpr uint32_t | TRX_UNDO_LOG_GTID_XA = TRX_UNDO_LOG_GTID_HDR_SIZE |
GTID offset for XA Prepare. More... | |
constexpr uint32_t | TRX_UNDO_LOG_GTID_XA_HDR_SIZE |
Total size with XA GTID information. More... | |
constexpr uint32_t | TRX_UNDO_PAGE_TYPE = 0 |
Transaction undo log page header offsets. More... | |
constexpr uint32_t | TRX_UNDO_PAGE_START = 2 |
Byte offset where the undo log records for the LATEST transaction start on this page (remember that in an update undo log, the first page can contain several undo logs) More... | |
constexpr uint32_t | TRX_UNDO_PAGE_FREE = 4 |
On each page of the undo log this field contains the byte offset of the first free byte on the page. More... | |
constexpr uint32_t | TRX_UNDO_PAGE_NODE = 6 |
The file list node in the chain of undo log pages. More... | |
constexpr uint32_t | TRX_UNDO_PAGE_HDR_SIZE = 6 + FLST_NODE_SIZE |
Size of the transaction undo log page header, in bytes. More... | |
constexpr uint32_t | TRX_UNDO_STATE = 0 |
Undo log segment header. More... | |
constexpr uint32_t | TRX_UNDO_LAST_LOG = 2 |
Offset of the last undo log header on the segment header page, 0 if none. More... | |
constexpr uint32_t | TRX_UNDO_FSEG_HEADER = 4 |
Header for the file segment which the undo log segment occupies. More... | |
constexpr uint32_t | TRX_UNDO_PAGE_LIST = 4 + FSEG_HEADER_SIZE |
Base node for the list of pages in the undo log segment; defined only on the undo log segment's first page. More... | |
constexpr uint32_t | TRX_UNDO_SEG_HDR_SIZE |
Size of the undo log segment header. More... | |
constexpr uint32_t | TRX_UNDO_TRX_ID = 0 |
The undo log header. More... | |
constexpr uint32_t | TRX_UNDO_TRX_NO = 8 |
Transaction number of the transaction; defined only if the log is in a history list. More... | |
constexpr uint32_t | TRX_UNDO_DEL_MARKS = 16 |
Defined only in an update undo log: true if the transaction may have done delete markings of records, and thus purge is necessary. More... | |
constexpr uint32_t | TRX_UNDO_LOG_START = 18 |
Offset of the first undo log record of this log on the header page; purge may remove undo log record from the log start, and therefore this is not necessarily the same as this log header end offset. More... | |
constexpr uint32_t | TRX_UNDO_FLAGS = 20 |
Transaction UNDO flags in one byte. More... | |
constexpr uint32_t | TRX_UNDO_FLAG_XID = 0x01 |
true if undo log header includes X/Open XA transaction identification XID More... | |
constexpr uint32_t | TRX_UNDO_FLAG_GTID = 0x02 |
true if undo log header includes GTID information from replication More... | |
constexpr uint32_t | TRX_UNDO_FLAG_XA_PREPARE_GTID = 0x04 |
true if undo log header includes GTID information for XA PREPARE More... | |
constexpr uint32_t | TRX_UNDO_DICT_TRANS = 21 |
true if the transaction is a table create, index create, or drop transaction: in recovery the transaction cannot be rolled back in the usual way: a 'rollback' rather means dropping the created or dropped table, if it still exists More... | |
constexpr uint32_t | TRX_UNDO_TABLE_ID = 22 |
Id of the table if the preceding field is true. More... | |
constexpr uint32_t | TRX_UNDO_NEXT_LOG = 30 |
Offset of the next undo log header on this page, 0 if none. More... | |
constexpr uint32_t | TRX_UNDO_PREV_LOG = 32 |
Offset of the previous undo log header on this page, 0 if none. More... | |
constexpr uint32_t | TRX_UNDO_HISTORY_NODE = 34 |
If the log is put to the history list, the file list node is here. More... | |
constexpr uint32_t | TRX_UNDO_LOG_OLD_HDR_SIZE = 34 + FLST_NODE_SIZE |
Size of the undo log header without XID information. More... | |
constexpr uint32_t | TRX_UNDO_XA_FORMAT = TRX_UNDO_LOG_OLD_HDR_SIZE |
X/Open XA Transaction Identification (XID) More... | |
constexpr uint32_t | TRX_UNDO_XA_TRID_LEN = TRX_UNDO_XA_FORMAT + 4 |
xid_t::gtrid_length More... | |
constexpr uint32_t | TRX_UNDO_XA_BQUAL_LEN = TRX_UNDO_XA_TRID_LEN + 4 |
xid_t::bqual_length More... | |
constexpr uint32_t | TRX_UNDO_XA_XID = TRX_UNDO_XA_BQUAL_LEN + 4 |
Distributed transaction identifier data. More... | |
constexpr uint32_t | TRX_UNDO_LOG_XA_HDR_SIZE = TRX_UNDO_XA_XID + XIDDATASIZE |
Total size of the undo log header with the XA XID. More... | |
Transaction undo log.
Created 3/26/1996 Heikki Tuuri
#define TRX_UNDO_PAGE_REUSE_LIMIT (3 * UNIV_PAGE_SIZE / 4) |
An update undo segment with just one page can be reused if it has at most this many bytes used; we must leave space at least for one new undo log header on the page.
|
inlinestatic |
Reads a roll ptr from an index page.
In case that the roll ptr size changes in some future version, this function should be used instead of mach_read_...
buf_block_t * trx_undo_add_page | ( | trx_t * | trx, |
trx_undo_t * | undo, | ||
trx_undo_ptr_t * | undo_ptr, | ||
mtr_t * | mtr | ||
) |
Tries to add a page to the undo log segment where the undo log is placed.
trx | in: transaction |
undo | in: undo log memory object |
undo_ptr | in: assign undo log from referred rollback segment. |
mtr | in: mtr which does not have a latch to any undo log page; the caller must have reserved the rollback segment mutex |
dberr_t trx_undo_assign_undo | ( | trx_t * | trx, |
trx_undo_ptr_t * | undo_ptr, | ||
ulint | type | ||
) |
Assigns an undo log for a transaction.
A new undo log is created or a cached undo log reused.
A new undo log is created or a cached undo log reused.
trx | in: transaction |
undo_ptr | in: assign undo log from referred rollback segment. |
type | in: TRX_UNDO_INSERT or TRX_UNDO_UPDATE |
|
inlinestatic |
void trx_undo_free_last_page_func | ( | const trx_t * | trx, |
trx_undo_t * | undo, | ||
mtr_t * | mtr | ||
) |
Frees the last undo log page.
The caller must hold the rollback segment mutex.
[in] | trx | transaction |
[in,out] | undo | undo log memory copy |
[in,out] | mtr | mini-transaction which does not have a latch to any undo log page or which has allocated the undo log page |
void trx_undo_free_trx_with_prepared_or_active_logs | ( | trx_t * | trx, |
bool | prepared | ||
) |
At shutdown, frees the undo logs of a transaction which was either PREPARED or (ACTIVE and recovered).
[in] | trx | transaction which undo logs are freed |
[in] | prepared | whether or not the undo segment is in prepared or prepared in tc states |
trx_undo_rec_t * trx_undo_get_first_rec | ( | trx_id_t * | modifier_trx_id, |
space_id_t | space, | ||
const page_size_t & | page_size, | ||
page_no_t | page_no, | ||
ulint | offset, | ||
ulint | mode, | ||
mtr_t * | mtr | ||
) |
Gets the first record in an undo log.
[out] | modifier_trx_id | The modifier trx identifier. |
[in] | space | Undo log header space |
[in] | page_size | Page size |
[in] | page_no | Undo log header page number |
[in] | offset | Undo log header offset on page |
[in] | mode | Latching mode: RW_S_LATCH or RW_X_LATCH |
[in,out] | mtr | Mini-transaction |
trx_undo_rec_t * trx_undo_get_next_rec | ( | trx_undo_rec_t * | rec, |
page_no_t | page_no, | ||
ulint | offset, | ||
mtr_t * | mtr | ||
) |
Gets the next record in an undo log.
rec | in: undo record |
page_no | in: undo log header page number |
offset | in: undo log header offset on page |
mtr | in: mtr |
trx_undo_rec_t * trx_undo_get_prev_rec | ( | trx_undo_rec_t * | rec, |
page_no_t | page_no, | ||
ulint | offset, | ||
bool | shared, | ||
mtr_t * | mtr | ||
) |
Gets the previous record in an undo log.
rec | in: undo record |
page_no | in: undo log header page number |
offset | in: undo log header offset on page |
shared | in: true=S-latch, false=X-latch |
mtr | in: mtr |
For saving GTID add update undo slot, if required.
[in] | trx | transaction |
[in] | prepare | operation is prepare |
[in] | rollback | operation is rollback |
void trx_undo_gtid_read_and_persist | ( | trx_ulogf_t * | undo_log | ) |
Read and persist GTID from undo header during recovery.
[in] | undo_log | undo log header |
void trx_undo_gtid_set | ( | trx_t * | trx, |
trx_undo_t * | undo, | ||
bool | is_xa_prepare | ||
) |
Set GTID flag in undo if transaction has GTID/.
[in,out] | trx | transaction |
[in,out] | undo | undo log memory object |
[in] | is_xa_prepare | GTID is for XA prepared transaction. |
void trx_undo_gtid_write | ( | trx_t * | trx, |
trx_ulogf_t * | undo_header, | ||
trx_undo_t * | undo, | ||
mtr_t * | mtr, | ||
bool | is_xa_prepare | ||
) |
Write GTID information to undo log header.
[in,out] | trx | transaction |
[in,out] | undo_header | undo log header |
[in,out] | undo | undo log memory object |
[in,out] | mtr | minit transaction for write |
[in] | is_xa_prepare | GTID is for XA prepared transaction. |
void trx_undo_insert_cleanup | ( | trx_undo_ptr_t * | undo_ptr, |
bool | noredo | ||
) |
Frees an insert undo log after a transaction commit or rollback.
Knowledge of inserts is not needed after a commit or rollback, therefore the data can be discarded.
[in,out] | undo_ptr | undo log to clean up |
[in] | noredo | whether the undo tablespace is redo logged |
ulint trx_undo_lists_init | ( | trx_rseg_t * | rseg | ) |
Initializes the undo log lists for a rollback segment memory copy.
This function is only called when the database is started or a new rollback segment created.
This function is only called when the database is started or a new rollback segment is created.
rseg | in: rollback segment memory object |
void trx_undo_mem_free | ( | trx_undo_t * | undo | ) |
Frees an undo log memory copy.
undo | in: the undo object to be freed |
|
inlinestatic |
Gets an undo log page and x-latches it.
[in] | page_id | Page id |
[in] | page_size | Page size |
[in,out] | mtr | Mini-transaction |
|
inlinestatic |
Returns the first undo record on the page in the specified undo log, or NULL if none exists.
[in] | undo_page | undo log page |
[in] | page_no | undo log header page number |
[in] | offset | undo log header offset on page |
|
inlinestatic |
Returns the last undo record on the page in the specified undo log, or NULL if none exists.
[in] | undo_page | undo log page |
[in] | page_no | undo log header page number |
[in] | offset | undo log header offset on page |
|
inlinestatic |
Returns the next undo log record on the page in the specified log, or NULL if none exists.
[in] | rec | undo log record |
[in] | page_no | undo log header page number |
[in] | offset | undo log header offset on page |
|
inlinestatic |
Returns the previous undo record on the page in the specified log, or NULL if none exists.
[in] | rec | undo log record |
[in] | page_no | undo log header page number |
[in] | offset | undo log header offset on page |
|
inlinestatic |
Gets an undo log page and s-latches it.
[in] | page_id | Page id |
[in] | page_size | Page size |
[in,out] | mtr | Mini-transaction |
byte * trx_undo_parse_page_header | ( | mlog_id_t | type, |
const byte * | ptr, | ||
const byte * | end_ptr, | ||
page_t * | page, | ||
mtr_t * | mtr | ||
) |
Parse the redo log entry of an undo log page header create or reuse.
[in] | type | MLOG_UNDO_HDR_CREATE or MLOG_UNDO_HDR_REUSE |
[in] | ptr | Redo log record |
[in] | end_ptr | End of log buffer |
[in,out] | page | Page frame or NULL |
[in,out] | mtr | Mini-transaction or NULL |
byte * trx_undo_parse_page_init | ( | const byte * | ptr, |
const byte * | end_ptr, | ||
page_t * | page, | ||
mtr_t * | mtr | ||
) |
Parses the redo log entry of an undo log page initialization.
ptr | in: buffer |
end_ptr | in: buffer end |
page | in: page or NULL |
mtr | in: mtr or NULL |
|
inlinestatic |
Returns true if the roll pointer is of the insert type.
page_t * trx_undo_set_prepared_in_tc | ( | trx_t * | trx, |
trx_undo_t * | undo, | ||
mtr_t * | mtr | ||
) |
Set the state of the undo log segment as prepared in TC.
[in,out] | trx | Transaction |
[in,out] | undo | Insert_undo or update_undo log |
[in,out] | mtr | Mini-transaction |
page_t * trx_undo_set_state_at_finish | ( | trx_undo_t * | undo, |
mtr_t * | mtr | ||
) |
Sets the state of the undo log segment at a transaction finish.
undo | in: undo log memory copy |
mtr | in: mtr |
page_t * trx_undo_set_state_at_prepare | ( | trx_t * | trx, |
trx_undo_t * | undo, | ||
bool | rollback, | ||
mtr_t * | mtr | ||
) |
Set the state of the undo log segment at a XA PREPARE or XA ROLLBACK.
[in,out] | trx | Transaction |
[in,out] | undo | Insert_undo or update_undo log |
[in] | rollback | false=XA PREPARE, true=XA ROLLBACK |
[in,out] | mtr | Mini-transaction |
|
inlinestatic |
void trx_undo_truncate_end_func | ( | const trx_t * | trx, |
trx_undo_t * | undo, | ||
undo_no_t | limit | ||
) |
Truncates an undo log from the end.
This function is used during a rollback to free space from an undo log.
[in] | trx | transaction for this undo log |
[in] | undo | undo log |
[in] | limit | all undo records with undo number; This value should be truncated. |
void trx_undo_truncate_start | ( | trx_rseg_t * | rseg, |
page_no_t | hdr_page_no, | ||
ulint | hdr_offset, | ||
undo_no_t | limit | ||
) |
Truncate the head of an undo log.
NOTE that only whole pages are freed; the header page is not freed, but emptied, if all the records there are below the limit.
[in,out] | rseg | rollback segment |
[in] | hdr_page_no | header page number |
[in] | hdr_offset | header offset on the page |
[in] | limit | first undo number to preserve (everything below the limit will be truncated) |
bool trx_undo_truncate_tablespace | ( | undo::Tablespace * | marked_space | ) |
Truncate UNDO tablespace, reinitialize header and rseg.
[in] | marked_space | UNDO tablespace to truncate |
|
inlinestatic |
Returns true if the record is of the insert type.
void trx_undo_update_cleanup | ( | trx_t * | trx, |
trx_undo_ptr_t * | undo_ptr, | ||
page_t * | undo_page, | ||
bool | update_rseg_history_len, | ||
ulint | n_added_logs, | ||
mtr_t * | mtr | ||
) |
Adds the update undo log header as the first in the history list, and frees the memory object, or puts it to the list of cached update undo log segments.
[in] | trx | Trx owning the update undo log |
[in] | undo_ptr | Update undo log. |
[in] | undo_page | Update undo log header page, x-latched |
[in] | update_rseg_history_len | If true: update rseg history len else skip updating it. |
[in] | n_added_logs | Number of logs added |
[in] | mtr | Mini-transaction |
|
inlinestatic |
Writes a roll ptr to an index page.
In case that the size changes in some future version, this function should be used instead of mach_write_...
[in] | ptr | pointer to memory where written |
[in] | roll_ptr | roll ptr |
|
constexpr |
contains an undo log of an active transaction
|
constexpr |
cached for quick reuse
|
constexpr |
Defined only in an update undo log: true if the transaction may have done delete markings of records, and thus purge is necessary.
|
constexpr |
true if the transaction is a table create, index create, or drop transaction: in recovery the transaction cannot be rolled back in the usual way: a 'rollback' rather means dropping the created or dropped table, if it still exists
|
constexpr |
true if undo log header includes GTID information from replication
|
constexpr |
true if undo log header includes GTID information for XA PREPARE
|
constexpr |
true if undo log header includes X/Open XA transaction identification XID
|
constexpr |
Transaction UNDO flags in one byte.
This is backward compatible as earlier we were storing either 1 or 0 for TRX_UNDO_XID_EXISTS.
|
constexpr |
Header for the file segment which the undo log segment occupies.
|
constexpr |
If the log is put to the history list, the file list node is here.
|
constexpr |
Types of an undo log segment.
contains undo entries for inserts
|
constexpr |
Offset of the last undo log header on the segment header page, 0 if none.
|
constexpr |
GTID offset.
|
constexpr |
Total size with GTID information.
|
constexpr |
Total length of GTID.
|
constexpr |
GTID version offset.
|
constexpr |
GTID offset for XA Prepare.
|
constexpr |
Total size with XA GTID information.
For external XA transaction we need to store both prepare and commit GTID.
|
constexpr |
Size of the undo log header without XID information.
|
constexpr |
Offset of the first undo log record of this log on the header page; purge may remove undo log record from the log start, and therefore this is not necessarily the same as this log header end offset.
|
constexpr |
Total size of the undo log header with the XA XID.
|
constexpr |
Offset of the next undo log header on this page, 0 if none.
|
constexpr |
On each page of the undo log this field contains the byte offset of the first free byte on the page.
|
constexpr |
The offset of the undo log page header on pages of the undo log.
|
constexpr |
Size of the transaction undo log page header, in bytes.
|
constexpr |
Base node for the list of pages in the undo log segment; defined only on the undo log segment's first page.
|
constexpr |
The file list node in the chain of undo log pages.
|
constexpr |
Byte offset where the undo log records for the LATEST transaction start on this page (remember that in an update undo log, the first page can contain several undo logs)
|
constexpr |
Transaction undo log page header offsets.
TRX_UNDO_INSERT or TRX_UNDO_UPDATE
|
constexpr |
contains an undo log of an prepared transaction
|
constexpr |
contains an undo log of an prepared transaction for a server version older than 8.0.29
|
constexpr |
|
constexpr |
Offset of the previous undo log header on this page, 0 if none.
|
constexpr |
The offset of the undo log segment header on the first page of the undo log segment.
|
constexpr |
Size of the undo log segment header.
|
constexpr |
Undo log segment header.
TRX_UNDO_ACTIVE, ...
|
constexpr |
Id of the table if the preceding field is true.
Note: deprecated
|
constexpr |
insert undo segment can be freed
|
constexpr |
update undo segment will not be reused: it can be freed in purge when all undo data in it is removed
|
constexpr |
The undo log header.
There can be several undo log headers on the first page of an update undo log segment. Transaction id
|
constexpr |
Transaction number of the transaction; defined only if the log is in a history list.
|
constexpr |
contains undo entries for updates and delete markings: in short, modifys (the name 'UPDATE' is a historical relic)
|
constexpr |
xid_t::bqual_length
|
constexpr |
X/Open XA Transaction Identification (XID)
xid_t::formatID
|
constexpr |
xid_t::gtrid_length
|
constexpr |
Distributed transaction identifier data.