summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-12-01 12:04:32 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2020-12-01 12:04:32 +0200
commite76e12886fd37094d95ca40b8cce45ca3ef28021 (patch)
tree8c2451e676c7d24f4858f9e5565c7ff6d0bc6ccf
parent1435f35bdabd078f0c4e744ab4bdfd8d4acca3ea (diff)
downloadmariadb-git-e76e12886fd37094d95ca40b8cce45ca3ef28021.tar.gz
MDEV-21962 fixup: Remove buf_pool_contains_zip()
The replacement is buf_pool.contains_zip().
-rw-r--r--storage/innobase/include/buf0buf.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/storage/innobase/include/buf0buf.h b/storage/innobase/include/buf0buf.h
index e255f6db056..5735c2f8d22 100644
--- a/storage/innobase/include/buf0buf.h
+++ b/storage/innobase/include/buf0buf.h
@@ -592,14 +592,6 @@ inline uint buf_page_full_crc32_size(const byte* buf, bool* comp, bool* cr)
}
#ifndef UNIV_INNOCHECKSUM
-#ifdef UNIV_DEBUG
-/** Find a block in the buffer pool that points to a given compressed page.
-@param[in] data pointer to compressed page
-@return buffer block pointing to the compressed page
-@retval NULL if not found */
-buf_block_t* buf_pool_contains_zip(const void* data);
-#endif /* UNIV_DEBUG */
-
/** Dump a page to stderr.
@param[in] read_buf database page
@param[in] zip_size compressed page size, or 0 */