Skip to content
Permalink
Browse files
MDEV-21174: Fix the WITH_INNODB_EXTRA_DEBUG build
One reference to PageConverter::m_page_zip_ptr was not adjusted
commit 745fd4b when the
data member was removed.
  • Loading branch information
dr-m committed Dec 16, 2019
1 parent 8963399 commit c24253d
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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

0 comments on commit c24253d

Please sign in to comment.