~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/btr0btr.h

  • Committer: Lee Bieber
  • Date: 2010-12-03 01:16:19 UTC
  • mfrom: (1819.9.81 update-innobase)
  • Revision ID: kalebral@gmail.com-20101203011619-n6v584rijwdet05b
Merge Stewart - update Innobase plugin based on InnoDB 1.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
Gets the index id field of a page.
131
131
@return index id */
132
132
UNIV_INLINE
133
 
dulint
 
133
index_id_t
134
134
btr_page_get_index_id(
135
135
/*==================*/
136
136
        const page_t*   page);  /*!< in: index page */
226
226
        ulint           space,  /*!< in: space where created */
227
227
        ulint           zip_size,/*!< in: compressed page size in bytes
228
228
                                or 0 for uncompressed pages */
229
 
        dulint          index_id,/*!< in: index id */
 
229
        index_id_t      index_id,/*!< in: index id */
230
230
        dict_index_t*   index,  /*!< in: index */
231
231
        mtr_t*          mtr);   /*!< in: mini-transaction handle */
232
232
/************************************************************//**