Fix cmake -DWITH_INNODB_EXTRA_DEBUG (UNIV_ZIP_DEBUG)

This commit is contained in:
Marko Mäkelä 2023-03-20 14:12:52 +02:00
parent d4339620be
commit 26e4ba5eb5

View File

@ -3366,7 +3366,7 @@ page_zip_validate_low(
differed. Let us ignore it. */
page_zip_fail(("page_zip_validate:"
" min_rec_flag"
" (%s" ULINTPF "," ULINTPF
" (%s" UINT32PF "," UINT32PF
",0x%02x)\n",
sloppy ? "ignored, " : "",
page_get_space_id(page),
@ -3411,7 +3411,8 @@ page_zip_validate_low(
page + PAGE_NEW_INFIMUM, TRUE);
trec = page_rec_get_next_low(
temp_page + PAGE_NEW_INFIMUM, TRUE);
const ulint n_core = page_is_leaf(page) ? index->n_fields : 0;
const ulint n_core = (index && page_is_leaf(page))
? index->n_fields : 0;
do {
if (page_offset(rec) != page_offset(trec)) {