row0undo.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Row undo
  3. (c) 1997 Innobase Oy
  4. Created 1/8/1997 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef row0undo_h
  7. #define row0undo_h
  8. #include "univ.i"
  9. #include "mtr0mtr.h"
  10. #include "trx0sys.h"
  11. #include "btr0types.h"
  12. #include "btr0pcur.h"
  13. #include "dict0types.h"
  14. #include "trx0types.h"
  15. #include "que0types.h"
  16. #include "row0types.h"
  17. /************************************************************************
  18. Creates a row undo node to a query graph. */
  19. undo_node_t*
  20. row_undo_node_create(
  21. /*=================*/
  22. /* out, own: undo node */
  23. trx_t* trx, /* in: transaction */
  24. que_thr_t* parent, /* in: parent node, i.e., a thr node */
  25. mem_heap_t* heap); /* in: memory heap where created */
  26. /***************************************************************
  27. Looks for the clustered index record when node has the row reference.
  28. The pcur in node is used in the search. If found, stores the row to node,
  29. and stores the position of pcur, and detaches it. The pcur must be closed
  30. by the caller in any case. */
  31. ibool
  32. row_undo_search_clust_to_pcur(
  33. /*==========================*/
  34. /* out: TRUE if found; NOTE the node->pcur
  35. must be closed by the caller, regardless of
  36. the return value */
  37. undo_node_t* node); /* in: row undo node */
  38. /***************************************************************
  39. Undoes a row operation in a table. This is a high-level function used
  40. in SQL execution graphs. */
  41. que_thr_t*
  42. row_undo_step(
  43. /*==========*/
  44. /* out: query thread to run next or NULL */
  45. que_thr_t* thr); /* in: query thread */
  46. /* A single query thread will try to perform the undo for all successive
  47. versions of a clustered index record, if the transaction has modified it
  48. several times during the execution which is rolled back. It may happen
  49. that the task is transferred to another query thread, if the other thread
  50. is assigned to handle an undo log record in the chain of different versions
  51. of the record, and the other thread happens to get the x-latch to the
  52. clustered index record at the right time.
  53. If a query thread notices that the clustered index record it is looking
  54. for is missing, or the roll ptr field in the record doed not point to the
  55. undo log record the thread was assigned to handle, then it gives up the undo
  56. task for that undo log record, and fetches the next. This situation can occur
  57. just in the case where the transaction modified the same record several times
  58. and another thread is currently doing the undo for successive versions of
  59. that index record. */
  60. /* Undo node structure */
  61. struct undo_node_struct{
  62. que_common_t common; /* node type: QUE_NODE_UNDO */
  63. ulint state; /* node execution state */
  64. trx_t* trx; /* trx for which undo is done */
  65. dulint roll_ptr;/* roll pointer to undo log record */
  66. trx_undo_rec_t* undo_rec;/* undo log record */
  67. dulint undo_no;/* undo number of the record */
  68. ulint rec_type;/* undo log record type: TRX_UNDO_INSERT_REC,
  69. ... */
  70. dulint new_roll_ptr; /* roll ptr to restore to clustered index
  71. record */
  72. dulint new_trx_id; /* trx id to restore to clustered index
  73. record */
  74. btr_pcur_t pcur; /* persistent cursor used in searching the
  75. clustered index record */
  76. dict_table_t* table; /* table where undo is done; NOTE that the
  77. table has to be released explicitly with
  78. dict_table_release */
  79. ulint cmpl_info;/* compiler analysis of an update */
  80. upd_t* update; /* update vector for a clustered index record */
  81. dtuple_t* ref; /* row reference to the next row to handle */
  82. dtuple_t* row; /* a copy (also fields copied to heap) of the
  83. row to handle */
  84. dict_index_t* index; /* the next index whose record should be
  85. handled */
  86. mem_heap_t* heap; /* memory heap used as auxiliary storage for
  87. row; this must be emptied after undo is tried
  88. on a row */
  89. };
  90. /* Execution states for an undo node */
  91. #define UNDO_NODE_FETCH_NEXT 1 /* we should fetch the next undo log
  92. record */
  93. #define UNDO_NODE_PREV_VERS 2 /* the roll ptr to previous version of
  94. a row is stored in node, and undo
  95. should be done based on it */
  96. #define UNDO_NODE_INSERT 3
  97. #define UNDO_NODE_MODIFY 4
  98. #ifndef UNIV_NONINL
  99. #include "row0undo.ic"
  100. #endif
  101. #endif