branches/zip: page_zip_dir_size(): Remove bogus debug assertion.

The function will be invoked in page_zip_decompress() before setting
page_zip->m_start or page_zip->m_end.
This commit is contained in:
marko 2006-06-30 11:59:28 +00:00
parent 7279a72289
commit 5d5bdb1b43

View file

@ -66,7 +66,6 @@ page_zip_dir_size(
/* Exclude the page infimum and supremum from the record count. */
ulint size = PAGE_ZIP_DIR_SLOT_SIZE
* (page_dir_get_n_heap((page_t*) page_zip->data) - 2);
ut_ad(page_zip->m_end + size < page_zip->size);
return(size);
}