mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
branches/zip: buf_page_io_complete(): Copy also uninitialized pages to
uncompressed storage, to avoid bogus warnings about page number mismatch.
This commit is contained in:
parent
fe5213b39e
commit
0c0e7b92d8
1 changed files with 1 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue