Commit 0c0e7b92 authored by marko's avatar marko

branches/zip: buf_page_io_complete(): Copy also uninitialized pages to

uncompressed storage, to avoid bogus warnings about page number mismatch.
parent fe5213b3
......@@ -1978,6 +1978,7 @@ buf_page_io_complete(
}
}
break;
case FIL_PAGE_TYPE_ALLOCATED:
case FIL_PAGE_INODE:
case FIL_PAGE_IBUF_BITMAP:
case FIL_PAGE_TYPE_FSP_HDR:
......@@ -1987,9 +1988,6 @@ buf_page_io_complete(
memcpy(block->frame, frame,
block->page_zip.size);
break;
case 0:
/* uninitialized page */
break;
default:
ut_print_timestamp(stderr);
fprintf(stderr,
......
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