mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
MDEV-21174: Fix the WITH_INNODB_EXTRA_DEBUG build
One reference to PageConverter::m_page_zip_ptr was not adjusted
commit 745fd4b39f when the
data member was removed.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user