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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. General row routines
  3. (c) 1996 Innobase Oy
  4. Created 4/20/1996 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef row0row_h
  7. #define row0row_h
  8. #include "univ.i"
  9. #include "data0data.h"
  10. #include "dict0types.h"
  11. #include "trx0types.h"
  12. #include "que0types.h"
  13. #include "mtr0mtr.h"
  14. #include "rem0types.h"
  15. #include "read0types.h"
  16. #include "btr0types.h"
  17. /*************************************************************************
  18. Reads the trx id field from a clustered index record. */
  19. UNIV_INLINE
  20. dulint
  21. row_get_rec_trx_id(
  22. /*===============*/
  23. /* out: value of the field */
  24. rec_t* rec, /* in: record */
  25. dict_index_t* index); /* in: clustered index */
  26. /*************************************************************************
  27. Reads the roll pointer field from a clustered index record. */
  28. UNIV_INLINE
  29. dulint
  30. row_get_rec_roll_ptr(
  31. /*=================*/
  32. /* out: value of the field */
  33. rec_t* rec, /* in: record */
  34. dict_index_t* index); /* in: clustered index */
  35. /*************************************************************************
  36. Writes the trx id field to a clustered index record. */
  37. UNIV_INLINE
  38. void
  39. row_set_rec_trx_id(
  40. /*===============*/
  41. rec_t* rec, /* in: record */
  42. dict_index_t* index, /* in: clustered index */
  43. dulint trx_id); /* in: value of the field */
  44. /*************************************************************************
  45. Sets the roll pointer field in a clustered index record. */
  46. UNIV_INLINE
  47. void
  48. row_set_rec_roll_ptr(
  49. /*=================*/
  50. rec_t* rec, /* in: record */
  51. dict_index_t* index, /* in: clustered index */
  52. dulint roll_ptr);/* in: value of the field */
  53. /*********************************************************************
  54. When an insert to a table is performed, this function builds the entry which
  55. has to be inserted to an index on the table. */
  56. dtuple_t*
  57. row_build_index_entry(
  58. /*==================*/
  59. /* out: index entry which should be inserted */
  60. dtuple_t* row,  /* in: row which should be inserted to the
  61. table */
  62. dict_index_t* index,  /* in: index on the table */
  63. mem_heap_t* heap); /* in: memory heap from which the memory for
  64. the index entry is allocated */
  65. /*********************************************************************
  66. Builds an index entry from a row. */
  67. void
  68. row_build_index_entry_to_tuple(
  69. /*===========================*/
  70. dtuple_t* entry, /* in/out: index entry; the dtuple must have
  71. enough fields for the index! */
  72. dtuple_t* row,  /* in: row */
  73. dict_index_t* index); /* in: index on the table */
  74. /***********************************************************************
  75. An inverse function to dict_row_build_index_entry. Builds a row from a
  76. record in a clustered index. */
  77. dtuple_t*
  78. row_build(
  79. /*======*/
  80. /* out, own: row built; see the NOTE below! */
  81. ulint type, /* in: ROW_COPY_DATA, or ROW_COPY_POINTERS:
  82. the former copies also the data fields to
  83. heap as the latter only places pointers to
  84. data fields on the index page, and thus is
  85. more efficient */
  86. dict_index_t* index, /* in: clustered index */
  87. rec_t* rec, /* in: record in the clustered index;
  88. NOTE: in the case ROW_COPY_POINTERS
  89. the data fields in the row will point
  90. directly into this record, therefore,
  91. the buffer page of this record must be
  92. at least s-latched and the latch held
  93. as long as the row dtuple is used! */
  94. mem_heap_t* heap); /* in: memory heap from which the memory
  95. needed is allocated */
  96. /***********************************************************************
  97. An inverse function to dict_row_build_index_entry. Builds a row from a
  98. record in a clustered index. */
  99. void
  100. row_build_to_tuple(
  101. /*===============*/
  102. dtuple_t* row, /* in/out: row built; see the NOTE below! */
  103. dict_index_t* index, /* in: clustered index */
  104. rec_t* rec); /* in: record in the clustered index;
  105. NOTE: the data fields in the row will point
  106. directly into this record, therefore,
  107. the buffer page of this record must be
  108. at least s-latched and the latch held
  109. as long as the row dtuple is used! */
  110. /***********************************************************************
  111. Converts an index record to a typed data tuple. */
  112. dtuple_t*
  113. row_rec_to_index_entry(
  114. /*===================*/
  115. /* out, own: index entry built; see the
  116. NOTE below! */
  117. ulint type, /* in: ROW_COPY_DATA, or ROW_COPY_POINTERS:
  118. the former copies also the data fields to
  119. heap as the latter only places pointers to
  120. data fields on the index page */
  121. dict_index_t* index, /* in: index */
  122. rec_t* rec, /* in: record in the index;
  123. NOTE: in the case ROW_COPY_POINTERS
  124. the data fields in the row will point
  125. directly into this record, therefore,
  126. the buffer page of this record must be
  127. at least s-latched and the latch held
  128. as long as the dtuple is used! */
  129. mem_heap_t* heap); /* in: memory heap from which the memory
  130. needed is allocated */
  131. /***********************************************************************
  132. Builds from a secondary index record a row reference with which we can
  133. search the clustered index record. */
  134. dtuple_t*
  135. row_build_row_ref(
  136. /*==============*/
  137. /* out, own: row reference built; see the
  138. NOTE below! */
  139. ulint type, /* in: ROW_COPY_DATA, or ROW_COPY_POINTERS:
  140. the former copies also the data fields to
  141. heap, whereas the latter only places pointers
  142. to data fields on the index page */
  143. dict_index_t* index, /* in: index */
  144. rec_t* rec, /* in: record in the index;
  145. NOTE: in the case ROW_COPY_POINTERS
  146. the data fields in the row will point
  147. directly into this record, therefore,
  148. the buffer page of this record must be
  149. at least s-latched and the latch held
  150. as long as the row reference is used! */
  151. mem_heap_t* heap); /* in: memory heap from which the memory
  152. needed is allocated */
  153. /***********************************************************************
  154. Builds from a secondary index record a row reference with which we can
  155. search the clustered index record. */
  156. void
  157. row_build_row_ref_in_tuple(
  158. /*=======================*/
  159. dtuple_t* ref, /* in/out: row reference built; see the
  160. NOTE below! */
  161. dict_index_t* index, /* in: index */
  162. rec_t* rec); /* in: record in the index;
  163. NOTE: the data fields in ref will point
  164. directly into this record, therefore,
  165. the buffer page of this record must be
  166. at least s-latched and the latch held
  167. as long as the row reference is used! */
  168. /***********************************************************************
  169. From a row build a row reference with which we can search the clustered
  170. index record. */
  171. void
  172. row_build_row_ref_from_row(
  173. /*=======================*/
  174. dtuple_t* ref, /* in/out: row reference built; see the
  175. NOTE below! ref must have the right number
  176. of fields! */
  177. dict_table_t* table, /* in: table */
  178. dtuple_t* row); /* in: row
  179. NOTE: the data fields in ref will point
  180. directly into data of this row */
  181. /***********************************************************************
  182. Builds from a secondary index record a row reference with which we can
  183. search the clustered index record. */
  184. UNIV_INLINE
  185. void
  186. row_build_row_ref_fast(
  187. /*===================*/
  188. dtuple_t* ref, /* in: typed data tuple where the reference
  189. is built */
  190. ulint* map, /* in: array of field numbers in rec telling
  191. how ref should be built from the fields of
  192. rec */
  193. rec_t* rec); /* in: record in the index; must be preserved
  194. while ref is used, as we do not copy field
  195. values to heap */
  196. /*******************************************************************
  197. Searches the clustered index record for a row, if we have the row
  198. reference. */
  199. ibool
  200. row_search_on_row_ref(
  201. /*==================*/
  202. /* out: TRUE if found */
  203. btr_pcur_t* pcur, /* in/out: persistent cursor, which must
  204. be closed by the caller */
  205. ulint mode, /* in: BTR_MODIFY_LEAF, ... */
  206. dict_table_t* table, /* in: table */
  207. dtuple_t* ref, /* in: row reference */
  208. mtr_t* mtr); /* in: mtr */
  209. /*************************************************************************
  210. Fetches the clustered index record for a secondary index record. The latches
  211. on the secondary index record are preserved. */
  212. rec_t*
  213. row_get_clust_rec(
  214. /*==============*/
  215. /* out: record or NULL, if no record found */
  216. ulint mode, /* in: BTR_MODIFY_LEAF, ... */
  217. rec_t* rec, /* in: record in a secondary index */
  218. dict_index_t* index, /* in: secondary index */
  219. dict_index_t** clust_index,/* out: clustered index */
  220. mtr_t* mtr); /* in: mtr */
  221. /*******************************************************************
  222. Searches an index record. */
  223. ibool
  224. row_search_index_entry(
  225. /*===================*/
  226. /* out: TRUE if found */
  227. dict_index_t* index, /* in: index */
  228. dtuple_t* entry, /* in: index entry */
  229. ulint mode, /* in: BTR_MODIFY_LEAF, ... */
  230. btr_pcur_t* pcur, /* in/out: persistent cursor, which must
  231. be closed by the caller */
  232. mtr_t* mtr); /* in: mtr */
  233. #define ROW_COPY_DATA 1
  234. #define ROW_COPY_POINTERS 2
  235. /* The allowed latching order of index records is the following:
  236. (1) a secondary index record ->
  237. (2) the clustered index record ->
  238. (3) rollback segment data for the clustered index record.
  239. No new latches may be obtained while the kernel mutex is reserved.
  240. However, the kernel mutex can be reserved while latches are owned. */
  241. #ifndef UNIV_NONINL
  242. #include "row0row.ic"
  243. #endif
  244. #endif