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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Purge obsolete records
  3. (c) 1997 Innobase Oy
  4. Created 3/14/1997 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef row0purge_h
  7. #define row0purge_h
  8. #include "univ.i"
  9. #include "data0data.h"
  10. #include "btr0types.h"
  11. #include "btr0pcur.h"
  12. #include "dict0types.h"
  13. #include "trx0types.h"
  14. #include "que0types.h"
  15. #include "row0types.h"
  16. /************************************************************************
  17. Creates a purge node to a query graph. */
  18. purge_node_t*
  19. row_purge_node_create(
  20. /*==================*/
  21. /* out, own: purge node */
  22. que_thr_t* parent, /* in: parent node, i.e., a thr node */
  23. mem_heap_t* heap); /* in: memory heap where created */
  24. /***************************************************************
  25. Does the purge operation for a single undo log record. This is a high-level
  26. function used in an SQL execution graph. */
  27. que_thr_t*
  28. row_purge_step(
  29. /*===========*/
  30. /* out: query thread to run next or NULL */
  31. que_thr_t* thr); /* in: query thread */
  32. /* Purge node structure */
  33. struct purge_node_struct{
  34. que_common_t common; /* node type: QUE_NODE_PURGE */
  35. /*----------------------*/
  36. /* Local storage for this graph node */
  37. dulint roll_ptr;/* roll pointer to undo log record */
  38. trx_undo_rec_t* undo_rec;/* undo log record */
  39. trx_undo_inf_t* reservation;/* reservation for the undo log record in
  40. the purge array */
  41. dulint undo_no;/* undo number of the record */
  42. ulint rec_type;/* undo log record type: TRX_UNDO_INSERT_REC,
  43. ... */
  44. btr_pcur_t pcur; /* persistent cursor used in searching the
  45. clustered index record */
  46. ibool found_clust;/* TRUE if the clustered index record
  47. determined by ref was found in the clustered
  48. index, and we were able to position pcur on
  49. it */
  50. dict_table_t* table; /* table where purge is done; NOTE that the
  51. table has to be released explicitly with
  52. dict_table_release */
  53. ulint cmpl_info;/* compiler analysis info of an update */
  54. upd_t* update; /* update vector for a clustered index record */
  55. dtuple_t* ref; /* NULL, or row reference to the next row to
  56. handle */
  57. dtuple_t* row; /* NULL, or a copy (also fields copied to
  58. heap) of the indexed fields of the row to
  59. handle */
  60. dict_index_t* index; /* NULL, or the next index whose record should
  61. be handled */
  62. mem_heap_t* heap; /* memory heap used as auxiliary storage for
  63. row; this must be emptied after a successful
  64. purge of a row */
  65. };
  66. #ifndef UNIV_NONINL
  67. #include "row0purge.ic"
  68. #endif
  69. #endif