mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
branches/zip: trx_sys_doublewrite_init_or_restore_pages(): Print out the
space identifier in the corruption message.
This commit is contained in:
parent
044e405df0
commit
23961f575e
1 changed files with 4 additions and 4 deletions
|
@ -492,11 +492,11 @@ trx_sys_doublewrite_init_or_restore_pages(
|
|||
fprintf(stderr,
|
||||
"InnoDB: Warning: database page"
|
||||
" corruption or a failed\n"
|
||||
"InnoDB: file read of page %lu.\n",
|
||||
(ulong) page_no);
|
||||
fprintf(stderr,
|
||||
"InnoDB: file read of"
|
||||
" space %lu page %lu.\n"
|
||||
"InnoDB: Trying to recover it from"
|
||||
" the doublewrite buffer.\n");
|
||||
" the doublewrite buffer.\n",
|
||||
(ulong) space_id, (ulong) page_no);
|
||||
|
||||
if (buf_page_is_corrupted(page, zip_size)) {
|
||||
fprintf(stderr,
|
||||
|
|
Loading…
Reference in a new issue