Commit 2cf90cb3 authored by Vasil Dimov's avatar Vasil Dimov

(InnoDB Plugin) 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.
parent d022a609
...@@ -663,7 +663,7 @@ btr_page_get_father_node_ptr_func( ...@@ -663,7 +663,7 @@ btr_page_get_father_node_ptr_func(
" to fix the\n" " to fix the\n"
"InnoDB: corruption. If the crash happens at " "InnoDB: corruption. If the crash happens at "
"the database startup, see\n" "the database startup, see\n"
"InnoDB: " REFMAN "forcing-recovery.html about\n" "InnoDB: " REFMAN "forcing-innodb-recovery.html about\n"
"InnoDB: forcing recovery. " "InnoDB: forcing recovery. "
"Then dump + drop + reimport.\n", stderr); "Then dump + drop + reimport.\n", stderr);
......
...@@ -375,7 +375,7 @@ buf_page_is_corrupted( ...@@ -375,7 +375,7 @@ buf_page_is_corrupted(
"you may have copied the InnoDB\n" "you may have copied the InnoDB\n"
"InnoDB: tablespace but not the InnoDB " "InnoDB: tablespace but not the InnoDB "
"log files. See\n" "log files. See\n"
"InnoDB: " REFMAN "forcing-recovery.html\n" "InnoDB: " REFMAN "forcing-innodb-recovery.html\n"
"InnoDB: for more information.\n", "InnoDB: for more information.\n",
(ulong) mach_read_from_4(read_buf (ulong) mach_read_from_4(read_buf
+ FIL_PAGE_OFFSET), + FIL_PAGE_OFFSET),
...@@ -3240,7 +3240,7 @@ buf_page_io_complete( ...@@ -3240,7 +3240,7 @@ buf_page_io_complete(
"InnoDB: TABLE to scan your" "InnoDB: TABLE to scan your"
" table for corruption.\n" " table for corruption.\n"
"InnoDB: See also " "InnoDB: See also "
REFMAN "forcing-recovery.html\n" REFMAN "forcing-innodb-recovery.html\n"
"InnoDB: about forcing recovery.\n", stderr); "InnoDB: about forcing recovery.\n", stderr);
if (srv_force_recovery < SRV_FORCE_IGNORE_CORRUPT) { if (srv_force_recovery < SRV_FORCE_IGNORE_CORRUPT) {
......
...@@ -3326,7 +3326,7 @@ fseg_free_page_low( ...@@ -3326,7 +3326,7 @@ fseg_free_page_low(
"InnoDB: database!\n", (ulong) page); "InnoDB: database!\n", (ulong) page);
crash: crash:
fputs("InnoDB: Please refer to\n" fputs("InnoDB: Please refer to\n"
"InnoDB: " REFMAN "forcing-recovery.html\n" "InnoDB: " REFMAN "forcing-innodb-recovery.html\n"
"InnoDB: about forcing recovery.\n", stderr); "InnoDB: about forcing recovery.\n", stderr);
ut_error; ut_error;
} }
......
...@@ -2188,7 +2188,7 @@ recv_report_corrupt_log( ...@@ -2188,7 +2188,7 @@ recv_report_corrupt_log(
"InnoDB: far enough in recovery! Please run CHECK TABLE\n" "InnoDB: far enough in recovery! Please run CHECK TABLE\n"
"InnoDB: on your InnoDB tables to check that they are ok!\n" "InnoDB: on your InnoDB tables to check that they are ok!\n"
"InnoDB: If mysqld crashes after this recovery, look at\n" "InnoDB: If mysqld crashes after this recovery, look at\n"
"InnoDB: " REFMAN "forcing-recovery.html\n" "InnoDB: " REFMAN "forcing-innodb-recovery.html\n"
"InnoDB: about forcing recovery.\n", stderr); "InnoDB: about forcing recovery.\n", stderr);
fflush(stderr); fflush(stderr);
......
...@@ -573,7 +573,7 @@ row_mysql_handle_errors( ...@@ -573,7 +573,7 @@ row_mysql_handle_errors(
"InnoDB: If the mysqld server crashes" "InnoDB: If the mysqld server crashes"
" after the startup or when\n" " after the startup or when\n"
"InnoDB: you dump the tables, look at\n" "InnoDB: you dump the tables, look at\n"
"InnoDB: " REFMAN "forcing-recovery.html" "InnoDB: " REFMAN "forcing-innodb-recovery.html"
" for help.\n", stderr); " for help.\n", stderr);
break; break;
case DB_FOREIGN_EXCEED_MAX_CASCADE: case DB_FOREIGN_EXCEED_MAX_CASCADE:
......
...@@ -79,7 +79,7 @@ ut_dbg_assertion_failed( ...@@ -79,7 +79,7 @@ ut_dbg_assertion_failed(
" or crashes, even\n" " or crashes, even\n"
"InnoDB: immediately after the mysqld startup, there may be\n" "InnoDB: immediately after the mysqld startup, there may be\n"
"InnoDB: corruption in the InnoDB tablespace. Please refer to\n" "InnoDB: corruption in the InnoDB tablespace. Please refer to\n"
"InnoDB: " REFMAN "forcing-recovery.html\n" "InnoDB: " REFMAN "forcing-innodb-recovery.html\n"
"InnoDB: about forcing recovery.\n", stderr); "InnoDB: about forcing recovery.\n", stderr);
#if defined(UNIV_SYNC_DEBUG) || !defined(UT_DBG_USE_ABORT) #if defined(UNIV_SYNC_DEBUG) || !defined(UT_DBG_USE_ABORT)
ut_dbg_stop_threads = TRUE; ut_dbg_stop_threads = TRUE;
......
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