mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
(Builtin InnoDB) Fix Bug#59303 Correct URL in crash message
old URL: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html new URL: http://dev.mysql.com/doc/refman/5.1/en/forcing-innodb-recovery.html Notice that there is a redirect from the old URL to the new URL, so visiting the old URL does not give "page not found" error.
This commit is contained in:
parent
fe8fbaaddb
commit
15273e4310
7 changed files with 9 additions and 9 deletions
|
@ -610,7 +610,7 @@ btr_page_get_father_for_rec(
|
|||
"InnoDB: corruption. If the crash happens at "
|
||||
"the database startup, see\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html about\n"
|
||||
"forcing-innodb-recovery.html about\n"
|
||||
"InnoDB: forcing recovery. "
|
||||
"Then dump + drop + reimport.\n", stderr);
|
||||
}
|
||||
|
|
|
@ -334,7 +334,7 @@ buf_page_is_corrupted(
|
|||
"InnoDB: tablespace but not the InnoDB "
|
||||
"log files. See\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/"
|
||||
"5.1/en/forcing-recovery.html\n"
|
||||
"5.1/en/forcing-innodb-recovery.html\n"
|
||||
"InnoDB: for more information.\n",
|
||||
(ulong) mach_read_from_4(read_buf
|
||||
+ FIL_PAGE_OFFSET),
|
||||
|
@ -2067,7 +2067,7 @@ buf_page_io_complete(
|
|||
" table for corruption.\n"
|
||||
"InnoDB: See also"
|
||||
" http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html\n"
|
||||
"forcing-innodb-recovery.html\n"
|
||||
"InnoDB: about forcing recovery.\n", stderr);
|
||||
|
||||
if (srv_force_recovery < SRV_FORCE_IGNORE_CORRUPT) {
|
||||
|
|
|
@ -3046,7 +3046,7 @@ fseg_free_page_low(
|
|||
crash:
|
||||
fputs("InnoDB: Please refer to\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html\n"
|
||||
"forcing-innodb-recovery.html\n"
|
||||
"InnoDB: about forcing recovery.\n", stderr);
|
||||
ut_error;
|
||||
}
|
||||
|
|
|
@ -218,7 +218,7 @@ buf_block_align(
|
|||
"InnoDB: corruption. If this happens in an"
|
||||
" InnoDB database recovery, see\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html\n"
|
||||
"forcing-innodb-recovery.html\n"
|
||||
"InnoDB: how to force recovery.\n",
|
||||
ptr, frame_zero,
|
||||
buf_pool->high_end);
|
||||
|
@ -257,7 +257,7 @@ buf_frame_align(
|
|||
"InnoDB: corruption. If this happens in an"
|
||||
" InnoDB database recovery, see\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html\n"
|
||||
"forcing-innodb-recovery.html\n"
|
||||
"InnoDB: how to force recovery.\n",
|
||||
ptr, buf_pool->frame_zero,
|
||||
buf_pool->high_end);
|
||||
|
|
|
@ -1826,7 +1826,7 @@ recv_report_corrupt_log(
|
|||
"InnoDB: on your InnoDB tables to check that they are ok!\n"
|
||||
"InnoDB: If mysqld crashes after this recovery, look at\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html\n"
|
||||
"forcing-innodb-recovery.html\n"
|
||||
"InnoDB: about forcing recovery.\n", stderr);
|
||||
|
||||
fflush(stderr);
|
||||
|
|
|
@ -552,7 +552,7 @@ handle_new_error:
|
|||
" after the startup or when\n"
|
||||
"InnoDB: you dump the tables, look at\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html"
|
||||
"forcing-innodb-recovery.html"
|
||||
" for help.\n", stderr);
|
||||
|
||||
} else if (err == DB_FOREIGN_EXCEED_MAX_CASCADE) {
|
||||
|
|
|
@ -58,7 +58,7 @@ ut_dbg_assertion_failed(
|
|||
"InnoDB: immediately after the mysqld startup, there may be\n"
|
||||
"InnoDB: corruption in the InnoDB tablespace. Please refer to\n"
|
||||
"InnoDB: http://dev.mysql.com/doc/refman/5.1/en/"
|
||||
"forcing-recovery.html\n"
|
||||
"forcing-innodb-recovery.html\n"
|
||||
"InnoDB: about forcing recovery.\n", stderr);
|
||||
#if defined(UNIV_SYNC_DEBUG) || !defined(UT_DBG_USE_ABORT)
|
||||
ut_dbg_stop_threads = TRUE;
|
||||
|
|
Loading…
Reference in a new issue