📄 row0umod.c
字号:
/******************************************************Undo modify of a row(c) 1997 Innobase OyCreated 2/27/1997 Heikki Tuuri*******************************************************/#include "row0umod.h"#ifdef UNIV_NONINL#include "row0umod.ic"#endif#include "dict0dict.h"#include "dict0boot.h"#include "trx0undo.h"#include "trx0roll.h"#include "btr0btr.h"#include "mach0data.h"#include "row0undo.h"#include "row0vers.h"#include "trx0trx.h"#include "trx0rec.h"#include "row0row.h"#include "row0upd.h"#include "que0que.h"#include "log0log.h"/* Considerations on undoing a modify operation.(1) Undoing a delete marking: all index records should be found. Some ofthem may have delete mark already FALSE, if the delete mark operation wasstopped underway, or if the undo operation ended prematurely because of asystem crash.(2) Undoing an update of a delete unmarked record: the newer version ofan updated secondary index entry should be removed if no prior versionof the clustered index record requires its existence. Otherwise, it shouldbe delete marked.(3) Undoing an update of a delete marked record. In this kind of update adelete marked clustered index record was delete unmarked and possibly alsosome of its fields were changed. Now, it is possible that the delete markedversion has become obsolete at the time the undo is started. *//***************************************************************Checks if also the previous version of the clustered index record wasmodified or inserted by the same transaction, and its undo number is suchthat it should be undone in the same rollback. */UNIV_INLINEiboolrow_undo_mod_undo_also_prev_vers(/*=============================*/ /* out: TRUE if also previous modify or insert of this row should be undone */ undo_node_t* node, /* in: row undo node */ dulint* undo_no)/* out: the undo number */{ trx_undo_rec_t* undo_rec; trx_t* trx; trx = node->trx; if (0 != ut_dulint_cmp(node->new_trx_id, trx->id)) { *undo_no = ut_dulint_zero; return(FALSE); } undo_rec = trx_undo_get_undo_rec_low(node->new_roll_ptr, node->heap); *undo_no = trx_undo_rec_get_undo_no(undo_rec); return(ut_dulint_cmp(trx->roll_limit, *undo_no) <= 0);} /***************************************************************Undoes a modify in a clustered index record. */staticulintrow_undo_mod_clust_low(/*===================*/ /* out: DB_SUCCESS, DB_FAIL, or error code: we may run out of file space */ undo_node_t* node, /* in: row undo node */ que_thr_t* thr, /* in: query thread */ mtr_t* mtr, /* in: mtr */ ulint mode) /* in: BTR_MODIFY_LEAF or BTR_MODIFY_TREE */{ big_rec_t* dummy_big_rec; btr_pcur_t* pcur; btr_cur_t* btr_cur; ulint err; ibool success; pcur = &(node->pcur); btr_cur = btr_pcur_get_btr_cur(pcur); success = btr_pcur_restore_position(mode, pcur, mtr); ut_ad(success); if (mode == BTR_MODIFY_LEAF) { err = btr_cur_optimistic_update(BTR_NO_LOCKING_FLAG | BTR_NO_UNDO_LOG_FLAG | BTR_KEEP_SYS_FLAG, btr_cur, node->update, node->cmpl_info, thr, mtr); } else { ut_ad(mode == BTR_MODIFY_TREE); err = btr_cur_pessimistic_update(BTR_NO_LOCKING_FLAG | BTR_NO_UNDO_LOG_FLAG | BTR_KEEP_SYS_FLAG, btr_cur, &dummy_big_rec, node->update, node->cmpl_info, thr, mtr); } return(err);} /***************************************************************Removes a clustered index record after undo if possible. */staticulintrow_undo_mod_remove_clust_low(/*==========================*/ /* out: DB_SUCCESS, DB_FAIL, or error code: we may run out of file space */ undo_node_t* node, /* in: row undo node */ que_thr_t* thr __attribute__((unused)), /* in: query thread */ mtr_t* mtr, /* in: mtr */ ulint mode) /* in: BTR_MODIFY_LEAF or BTR_MODIFY_TREE */{ btr_pcur_t* pcur; btr_cur_t* btr_cur; ulint err; ibool success; pcur = &(node->pcur); btr_cur = btr_pcur_get_btr_cur(pcur); success = btr_pcur_restore_position(mode, pcur, mtr); if (!success) { return(DB_SUCCESS); } /* Find out if we can remove the whole clustered index record */ if (node->rec_type == TRX_UNDO_UPD_DEL_REC && !row_vers_must_preserve_del_marked(node->new_trx_id, mtr)) { /* Ok, we can remove */ } else { return(DB_SUCCESS); } if (mode == BTR_MODIFY_LEAF) { success = btr_cur_optimistic_delete(btr_cur, mtr); if (success) { err = DB_SUCCESS; } else { err = DB_FAIL; } } else { ut_ad(mode == BTR_MODIFY_TREE); /* Note that since this operation is analogous to purge, we can free also inherited externally stored fields: hence the last FALSE in the call below */ btr_cur_pessimistic_delete(&err, FALSE, btr_cur, FALSE, mtr); /* The delete operation may fail if we have little file space left: TODO: easiest to crash the database and restart with more file space */ } return(err);} /***************************************************************Undoes a modify in a clustered index record. Sets also the node state for thenext round of undo. */staticulintrow_undo_mod_clust(/*===============*/ /* out: DB_SUCCESS or error code: we may run out of file space */ undo_node_t* node, /* in: row undo node */ que_thr_t* thr) /* in: query thread */{ btr_pcur_t* pcur; mtr_t mtr; ulint err; ibool success; ibool more_vers; dulint new_undo_no; ut_ad(node && thr); /* Check if also the previous version of the clustered index record should be undone in this same rollback operation */ more_vers = row_undo_mod_undo_also_prev_vers(node, &new_undo_no); pcur = &(node->pcur); mtr_start(&mtr); /* Try optimistic processing of the record, keeping changes within the index page */ err = row_undo_mod_clust_low(node, thr, &mtr, BTR_MODIFY_LEAF); if (err != DB_SUCCESS) { btr_pcur_commit_specify_mtr(pcur, &mtr); /* We may have to modify tree structure: do a pessimistic descent down the index tree */ mtr_start(&mtr); err = row_undo_mod_clust_low(node, thr, &mtr, BTR_MODIFY_TREE); } btr_pcur_commit_specify_mtr(pcur, &mtr); if (err == DB_SUCCESS && node->rec_type == TRX_UNDO_UPD_DEL_REC) { mtr_start(&mtr); err = row_undo_mod_remove_clust_low(node, thr, &mtr, BTR_MODIFY_LEAF); if (err != DB_SUCCESS) { btr_pcur_commit_specify_mtr(pcur, &mtr); /* We may have to modify tree structure: do a pessimistic descent down the index tree */ mtr_start(&mtr); err = row_undo_mod_remove_clust_low(node, thr, &mtr, BTR_MODIFY_TREE); } btr_pcur_commit_specify_mtr(pcur, &mtr); } node->state = UNDO_NODE_FETCH_NEXT; trx_undo_rec_release(node->trx, node->undo_no); if (more_vers && err == DB_SUCCESS) { /* Reserve the undo log record to the prior version after committing &mtr: this is necessary to comply with the latching order, as &mtr may contain the fsp latch which is lower in the latch hierarchy than trx->undo_mutex. */ success = trx_undo_rec_reserve(node->trx, new_undo_no); if (success) { node->state = UNDO_NODE_PREV_VERS; } } return(err);}/***************************************************************Delete marks or removes a secondary index entry if found. */staticulintrow_undo_mod_del_mark_or_remove_sec_low(/*====================================*/ /* out: DB_SUCCESS, DB_FAIL, or DB_OUT_OF_FILE_SPACE */ undo_node_t* node, /* in: row undo node */ que_thr_t* thr, /* in: query thread */ dict_index_t* index, /* in: index */ dtuple_t* entry, /* in: index entry */ ulint mode) /* in: latch mode BTR_MODIFY_LEAF or BTR_MODIFY_TREE */ { ibool found; btr_pcur_t pcur; btr_cur_t* btr_cur; ibool success; ibool old_has; ulint err; mtr_t mtr; mtr_t mtr_vers; log_free_check(); mtr_start(&mtr); found = row_search_index_entry(index, entry, mode, &pcur, &mtr); btr_cur = btr_pcur_get_btr_cur(&pcur); if (!found) { /* Not found */ btr_pcur_close(&pcur); mtr_commit(&mtr); return(DB_SUCCESS); } /* We should remove the index record if no prior version of the row, which cannot be purged yet, requires its existence. If some requires, we should delete mark the record. */ mtr_start(&mtr_vers); success = btr_pcur_restore_position(BTR_SEARCH_LEAF, &(node->pcur), &mtr_vers); ut_a(success); old_has = row_vers_old_has_index_entry(FALSE, btr_pcur_get_rec(&(node->pcur)), &mtr_vers, index, entry); if (old_has) { err = btr_cur_del_mark_set_sec_rec(BTR_NO_LOCKING_FLAG, btr_cur, TRUE, thr, &mtr); ut_ad(err == DB_SUCCESS); } else { /* Remove the index record */ if (mode == BTR_MODIFY_LEAF) { success = btr_cur_optimistic_delete(btr_cur, &mtr); if (success) { err = DB_SUCCESS; } else { err = DB_FAIL; } } else { ut_ad(mode == BTR_MODIFY_TREE); btr_cur_pessimistic_delete(&err, FALSE, btr_cur, TRUE, &mtr); /* The delete operation may fail if we have little file space left: TODO: easiest to crash the database and restart with more file space */ } } btr_pcur_commit_specify_mtr(&(node->pcur), &mtr_vers); btr_pcur_close(&pcur); mtr_commit(&mtr); return(err);}/***************************************************************Delete marks or removes a secondary index entry if found.NOTE that if we updated the fields of a delete-marked secondary index recordso that alphabetically they stayed the same, e.g., 'abc' -> 'aBc', we cannotreturn to the original values because we do not know them. But this shouldnot cause problems because in row0sel.c, in queries we always retrieve theclustered index record or an earlier version of it, if the secondary indexrecord through which we do the search is delete-marked. */staticulintrow_undo_mod_del_mark_or_remove_sec(/*================================*/ /* out: DB_SUCCESS or DB_OUT_OF_FILE_SPACE */ undo_node_t* node, /* in: row undo node */ que_thr_t* thr, /* in: query thread */ dict_index_t* index, /* in: index */ dtuple_t* entry) /* in: index entry */{ ulint err; err = row_undo_mod_del_mark_or_remove_sec_low(node, thr, index, entry, BTR_MODIFY_LEAF); if (err == DB_SUCCESS) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -