Skip to content

Commit

Permalink
Remove the unused function btr_page_get()
Browse files Browse the repository at this point in the history
btr_block_get(): Remove #ifdef around the definition
  • Loading branch information
dr-m committed Sep 24, 2019
1 parent ab9f378 commit ef701bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 60 deletions.
31 changes: 1 addition & 30 deletions storage/innobase/include/btr0btr.h
Expand Up @@ -236,45 +236,16 @@ btr_block_get_func(
dict_index_t* index,
mtr_t* mtr);

# ifdef UNIV_DEBUG
/** Gets a buffer page and declares its latching order level.
@param page_id tablespace/page identifier
@param page_size page size
@param mode latch mode
@param index index tree, may be NULL if not the insert buffer tree
@param mtr mini-transaction handle
@return the block descriptor */
# define btr_block_get(page_id, page_size, mode, index, mtr) \
# define btr_block_get(page_id, page_size, mode, index, mtr) \
btr_block_get_func(page_id, page_size, mode, \
__FILE__, __LINE__, (dict_index_t*)index, mtr)
# else /* UNIV_DEBUG */
/** Gets a buffer page and declares its latching order level.
@param page_id tablespace/page identifier
@param page_size page size
@param mode latch mode
@param index index tree, may be NULL if not the insert buffer tree
@param mtr mini-transaction handle
@return the block descriptor */
# define btr_block_get(page_id, page_size, mode, index, mtr) \
btr_block_get_func(page_id, page_size, mode, __FILE__, __LINE__, (dict_index_t*)index, mtr)
# endif /* UNIV_DEBUG */
/** Gets a buffer page and declares its latching order level.
@param page_id tablespace/page identifier
@param page_size page size
@param mode latch mode
@param index index tree, may be NULL if not the insert buffer tree
@param mtr mini-transaction handle
@return the uncompressed page frame */
UNIV_INLINE
page_t*
btr_page_get(
/*=========*/
const page_id_t page_id,
const page_size_t& page_size,
ulint mode,
dict_index_t* index,
mtr_t* mtr)
MY_ATTRIBUTE((warn_unused_result));
/**************************************************************//**
Gets the index id field of a page.
@return index id */
Expand Down
30 changes: 0 additions & 30 deletions storage/innobase/include/btr0btr.ic
Expand Up @@ -101,36 +101,6 @@ btr_page_set_index_id(
}
}

/** Gets a buffer page and declares its latching order level.
@param space tablespace identifier
@param zip_size compressed page size in bytes or 0 for uncompressed pages
@param page_no page number
@param mode latch mode
@param idx index tree, may be NULL if not the insert buffer tree
@param mtr mini-transaction handle
@return the uncompressed page frame */
UNIV_INLINE
page_t*
btr_page_get(
/*=========*/
const page_id_t page_id,
const page_size_t& page_size,
ulint mode,
dict_index_t* index,
mtr_t* mtr)
{
buf_block_t* block=NULL;
buf_frame_t* frame=NULL;

block = btr_block_get(page_id, page_size, mode, index, mtr);

if (block) {
frame = buf_block_get_frame(block);
}

return ((page_t*)frame);
}

/**************************************************************//**
Gets the index id field of a page.
@return index id */
Expand Down

0 comments on commit ef701bf

Please sign in to comment.