mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
InnoDB: Remove unreferenced debug functions from non-debug builds.
This commit is contained in:
parent
3cbaf365e6
commit
40516ad80c
5 changed files with 16 additions and 8 deletions
|
@ -1947,6 +1947,7 @@ buf_pool_invalidate(void)
|
|||
mutex_exit(&(buf_pool->mutex));
|
||||
}
|
||||
|
||||
#ifdef UNIV_DEBUG
|
||||
/*************************************************************************
|
||||
Validates the buffer buf_pool data structure. */
|
||||
|
||||
|
@ -2146,6 +2147,7 @@ buf_print(void)
|
|||
|
||||
ut_a(buf_validate());
|
||||
}
|
||||
#endif /* UNIV_DEBUG */
|
||||
|
||||
/*************************************************************************
|
||||
Returns the number of latched pages in the buffer pool. */
|
||||
|
|
|
@ -919,7 +919,8 @@ buf_LRU_block_free_hashed_page(
|
|||
|
||||
buf_LRU_block_free_non_file_page(block);
|
||||
}
|
||||
|
||||
|
||||
#ifdef UNIV_DEBUG
|
||||
/**************************************************************************
|
||||
Validates the LRU list. */
|
||||
|
||||
|
@ -1050,3 +1051,4 @@ buf_LRU_print(void)
|
|||
|
||||
mutex_exit(&(buf_pool->mutex));
|
||||
}
|
||||
#endif /* UNIV_DEBUG */
|
||||
|
|
|
@ -480,12 +480,20 @@ buf_pool_is_block(
|
|||
/*==============*/
|
||||
/* out: TRUE if pointer to block */
|
||||
void* ptr); /* in: pointer to memory */
|
||||
#ifdef UNIV_DEBUG
|
||||
/*************************************************************************
|
||||
Validates the buffer pool data structure. */
|
||||
|
||||
ibool
|
||||
buf_validate(void);
|
||||
/*==============*/
|
||||
/*************************************************************************
|
||||
Prints info of the buffer pool data structure. */
|
||||
|
||||
void
|
||||
buf_print(void);
|
||||
/*============*/
|
||||
#endif /* UNIV_DEBUG */
|
||||
/************************************************************************
|
||||
Prints a page to stderr. */
|
||||
|
||||
|
@ -494,12 +502,6 @@ buf_page_print(
|
|||
/*===========*/
|
||||
byte* read_buf); /* in: a database page */
|
||||
/*************************************************************************
|
||||
Prints info of the buffer pool data structure. */
|
||||
|
||||
void
|
||||
buf_print(void);
|
||||
/*============*/
|
||||
/*************************************************************************
|
||||
Returns the number of latched pages in the buffer pool. */
|
||||
|
||||
ulint
|
||||
|
|
|
@ -122,6 +122,7 @@ void
|
|||
buf_LRU_make_block_old(
|
||||
/*===================*/
|
||||
buf_block_t* block); /* in: control block */
|
||||
#ifdef UNIV_DEBUG
|
||||
/**************************************************************************
|
||||
Validates the LRU list. */
|
||||
|
||||
|
@ -134,6 +135,7 @@ Prints the LRU list. */
|
|||
void
|
||||
buf_LRU_print(void);
|
||||
/*===============*/
|
||||
#endif /* UNIV_DEBUG */
|
||||
|
||||
#ifndef UNIV_NONINL
|
||||
#include "buf0lru.ic"
|
||||
|
|
|
@ -300,7 +300,7 @@ UNIV_INLINE
|
|||
ulint
|
||||
rec_offs_comp(
|
||||
/*==========*/
|
||||
/* out: TRUE if compact format */
|
||||
/* out: nonzero if compact format */
|
||||
const ulint* offsets);/* in: array returned by rec_get_offsets() */
|
||||
/**********************************************************
|
||||
Returns nonzero if the extern bit is set in nth field of rec. */
|
||||
|
|
Loading…
Reference in a new issue