Commit c24253d0 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-21174: Fix the WITH_INNODB_EXTRA_DEBUG build

One reference to PageConverter::m_page_zip_ptr was not adjusted
commit 745fd4b3 when the
data member was removed.
parent 89633995
......@@ -1837,8 +1837,8 @@ PageConverter::update_index_page(
}
#ifdef UNIV_ZIP_DEBUG
ut_a(!is_compressed_table()
|| page_zip_validate(m_page_zip_ptr, page, m_index->m_srv_index));
ut_a(!block->page.zip.data || page_zip_validate(&block->page.zip, page,
m_index->m_srv_index));
#endif /* UNIV_ZIP_DEBUG */
/* This has to be written to uncompressed index header. Set it to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment