row0undo.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Row undo
  3. (c) 1997 Innobase Oy
  4. Created 1/8/1997 Heikki Tuuri
  5. *******************************************************/
  6. #include "row0undo.h"
  7. #ifdef UNIV_NONINL
  8. #include "row0undo.ic"
  9. #endif
  10. #include "fsp0fsp.h"
  11. #include "mach0data.h"
  12. #include "trx0rseg.h"
  13. #include "trx0trx.h"
  14. #include "trx0roll.h"
  15. #include "trx0undo.h"
  16. #include "trx0purge.h"
  17. #include "trx0rec.h"
  18. #include "que0que.h"
  19. #include "row0row.h"
  20. #include "row0uins.h"
  21. #include "row0umod.h"
  22. #include "srv0srv.h"
  23. /* How to undo row operations?
  24. (1) For an insert, we have stored a prefix of the clustered index record
  25. in the undo log. Using it, we look for the clustered record, and using
  26. that we look for the records in the secondary indexes. The insert operation
  27. may have been left incomplete, if the database crashed, for example.
  28. We may have look at the trx id and roll ptr to make sure the record in the
  29. clustered index is really the one for which the undo log record was
  30. written. We can use the framework we get from the original insert op.
  31. (2) Delete marking: We can use the framework we get from the original
  32. delete mark op. We only have to check the trx id.
  33. (3) Update: This may be the most complicated. We have to use the framework
  34. we get from the original update op.
  35. What if the same trx repeatedly deletes and inserts an identical row.
  36. Then the row id changes and also roll ptr. What if the row id was not
  37. part of the ordering fields in the clustered index? Maybe we have to write
  38. it to undo log. Well, maybe not, because if we order the row id and trx id
  39. in descending order, then the only undeleted copy is the first in the
  40. index. Our searches in row operations always position the cursor before
  41. the first record in the result set. But, if there is no key defined for
  42. a table, then it would be desirable that row id is in ascending order.
  43. So, lets store row id in descending order only if it is not an ordering
  44. field in the clustered index.
  45. NOTE: Deletes and inserts may lead to situation where there are identical
  46. records in a secondary index. Is that a problem in the B-tree? Yes.
  47. Also updates can lead to this, unless trx id and roll ptr are included in
  48. ord fields.
  49. (1) Fix in clustered indexes: include row id, trx id, and roll ptr
  50. in node pointers of B-tree.
  51. (2) Fix in secondary indexes: include all fields in node pointers, and
  52. if an entry is inserted, check if it is equal to the right neighbor,
  53. in which case update the right neighbor: the neighbor must be delete
  54. marked, set it unmarked and write the trx id of the current transaction.
  55. What if the same trx repeatedly updates the same row, updating a secondary
  56. index field or not? Updating a clustered index ordering field?
  57. (1) If it does not update the secondary index and not the clustered index
  58. ord field. Then the secondary index record stays unchanged, but the
  59. trx id in the secondary index record may be smaller than in the clustered
  60. index record. This is no problem?
  61. (2) If it updates secondary index ord field but not clustered: then in
  62. secondary index there are delete marked records, which differ in an
  63. ord field. No problem.
  64. (3) Updates clustered ord field but not secondary, and secondary index
  65. is unique. Then the record in secondary index is just updated at the
  66. clustered ord field.
  67. (4)
  68. Problem with duplicate records:
  69. Fix 1: Add a trx op no field to all indexes. A problem: if a trx with a
  70. bigger trx id has inserted and delete marked a similar row, our trx inserts
  71. again a similar row, and a trx with an even bigger id delete marks it. Then
  72. the position of the row should change in the index if the trx id affects
  73. the alphabetical ordering.
  74. Fix 2: If an insert encounters a similar row marked deleted, we turn the
  75. insert into an 'update' of the row marked deleted. Then we must write undo
  76. info on the update. A problem: what if a purge operation tries to remove
  77. the delete marked row?
  78. We can think of the database row versions as a linked list which starts
  79. from the record in the clustered index, and is linked by roll ptrs
  80. through undo logs. The secondary index records are references which tell
  81. what kinds of records can be found in this linked list for a record
  82. in the clustered index.
  83. How to do the purge? A record can be removed from the clustered index
  84. if its linked list becomes empty, i.e., the row has been marked deleted
  85. and its roll ptr points to the record in the undo log we are going through,
  86. doing the purge. Similarly, during a rollback, a record can be removed
  87. if the stored roll ptr in the undo log points to a trx already (being) purged,
  88. or if the roll ptr is NULL, i.e., it was a fresh insert. */
  89. /************************************************************************
  90. Creates a row undo node to a query graph. */
  91. undo_node_t*
  92. row_undo_node_create(
  93. /*=================*/
  94. /* out, own: undo node */
  95. trx_t* trx, /* in: transaction */
  96. que_thr_t* parent, /* in: parent node, i.e., a thr node */
  97. mem_heap_t* heap) /* in: memory heap where created */
  98. {
  99. undo_node_t* undo;
  100. ut_ad(trx && parent && heap);
  101. undo = mem_heap_alloc(heap, sizeof(undo_node_t));
  102. undo->common.type = QUE_NODE_UNDO;
  103. undo->common.parent = parent;
  104. undo->state = UNDO_NODE_FETCH_NEXT;
  105. undo->trx = trx;
  106. undo->heap = mem_heap_create(256);
  107. return(undo);
  108. }
  109. /***************************************************************
  110. Looks for the clustered index record when node has the row reference.
  111. The pcur in node is used in the search. If found, stores the row to node,
  112. and stores the position of pcur, and detaches it. The pcur must be closed
  113. by the caller in any case. */
  114. ibool
  115. row_undo_search_clust_to_pcur(
  116. /*==========================*/
  117. /* out: TRUE if found; NOTE the node->pcur
  118. must be closed by the caller, regardless of
  119. the return value */
  120. undo_node_t* node, /* in: row undo node */
  121. que_thr_t* thr) /* in: query thread */
  122. {
  123. dict_index_t* clust_index;
  124. ibool found;
  125. mtr_t mtr;
  126. ibool ret;
  127. rec_t* rec;
  128. UT_NOT_USED(thr);
  129. mtr_start(&mtr);
  130. clust_index = dict_table_get_first_index(node->table);
  131. found = row_search_on_row_ref(&(node->pcur), BTR_MODIFY_LEAF,
  132. node->table, node->ref, &mtr);
  133. rec = btr_pcur_get_rec(&(node->pcur));
  134. if (!found || 0 != ut_dulint_cmp(node->roll_ptr,
  135.     row_get_rec_roll_ptr(rec, clust_index))) {
  136. /* We must remove the reservation on the undo log record
  137. BEFORE releasing the latch on the clustered index page: this
  138. is to make sure that some thread will eventually undo the
  139. modification corresponding to node->roll_ptr. */
  140. /* printf("--------------------undoing a previous versionn");
  141. */
  142. trx_undo_rec_release(node->trx, node->undo_no);
  143.    
  144. ret = FALSE;
  145. } else {
  146. node->row = row_build(ROW_COPY_DATA, clust_index, rec,
  147. node->heap);
  148. btr_pcur_store_position(&(node->pcur), &mtr);
  149. ret = TRUE;
  150. }
  151. btr_pcur_commit_specify_mtr(&(node->pcur), &mtr);
  152. return(ret);
  153. }
  154. /***************************************************************
  155. Fetches an undo log record and does the undo for the recorded operation.
  156. If none left, or a partial rollback completed, returns control to the
  157. parent node, which is always a query thread node. */
  158. static
  159. ulint
  160. row_undo(
  161. /*=====*/
  162. /* out: DB_SUCCESS if operation successfully
  163. completed, else error code */
  164. undo_node_t* node, /* in: row undo node */
  165. que_thr_t* thr) /* in: query thread */
  166. {
  167. ulint err;
  168. trx_t* trx;
  169. dulint roll_ptr;
  170. ut_ad(node && thr);
  171. trx = node->trx;
  172. if (node->state == UNDO_NODE_FETCH_NEXT) {
  173. /* The call below also starts &mtr */
  174. node->undo_rec = trx_roll_pop_top_rec_of_trx(trx,
  175. trx->roll_limit,
  176. &roll_ptr,
  177. node->heap);
  178. if (!node->undo_rec) {
  179. /* Rollback completed for this query thread */
  180. thr->run_node = que_node_get_parent(node);
  181. return(DB_SUCCESS);
  182. }
  183. node->roll_ptr = roll_ptr;
  184. node->undo_no = trx_undo_rec_get_undo_no(node->undo_rec);
  185. if (trx_undo_roll_ptr_is_insert(roll_ptr)) {
  186. node->state = UNDO_NODE_INSERT;
  187. } else {
  188. node->state = UNDO_NODE_MODIFY;
  189. }
  190. } else if (node->state == UNDO_NODE_PREV_VERS) {
  191. /* Undo should be done to the same clustered index record
  192. again in this same rollback, restoring the previous version */
  193. roll_ptr = node->new_roll_ptr;
  194. node->undo_rec = trx_undo_get_undo_rec_low(roll_ptr,
  195. node->heap);
  196. node->roll_ptr = roll_ptr;
  197. node->undo_no = trx_undo_rec_get_undo_no(node->undo_rec);
  198. if (trx_undo_roll_ptr_is_insert(roll_ptr)) {
  199. node->state = UNDO_NODE_INSERT;
  200. } else {
  201. node->state = UNDO_NODE_MODIFY;
  202. }
  203. }
  204. if (node->state == UNDO_NODE_INSERT) {
  205. err = row_undo_ins(node, thr);
  206. node->state = UNDO_NODE_FETCH_NEXT;
  207. } else {
  208. ut_ad(node->state == UNDO_NODE_MODIFY);
  209. err = row_undo_mod(node, thr);
  210. }
  211. /* Do some cleanup */
  212. btr_pcur_close(&(node->pcur));
  213. mem_heap_empty(node->heap);
  214. thr->run_node = node;
  215. return(err);
  216. }
  217. /***************************************************************
  218. Undoes a row operation in a table. This is a high-level function used
  219. in SQL execution graphs. */
  220. que_thr_t*
  221. row_undo_step(
  222. /*==========*/
  223. /* out: query thread to run next or NULL */
  224. que_thr_t* thr) /* in: query thread */
  225. {
  226. ulint err;
  227. undo_node_t* node;
  228. trx_t* trx;
  229. ut_ad(thr);
  230. srv_activity_count++;
  231. trx = thr_get_trx(thr);
  232. node = thr->run_node;
  233. ut_ad(que_node_get_type(node) == QUE_NODE_UNDO);
  234. err = row_undo(node, thr);
  235. trx->error_state = err;
  236. if (err != DB_SUCCESS) {
  237. /* SQL error detected */
  238. ut_a(0);
  239. return(NULL);
  240. }
  241. return(thr);