Commit 9ad42c70 authored by unknown's avatar unknown
Browse files

InnoDB: Update links to the user manual


innobase/btr/btr0btr.c:
  Update links to the user manual
innobase/buf/buf0buf.c:
  Update links to the user manual
innobase/dict/dict0dict.c:
  Update links to the user manual
innobase/fsp/fsp0fsp.c:
  Update links to the user manual
innobase/log/log0log.c:
  Update links to the user manual
innobase/log/log0recv.c:
  Update links to the user manual
innobase/os/os0file.c:
  Update links to the user manual
innobase/row/row0mysql.c:
  Update links to the user manual
innobase/ut/ut0dbg.c:
  Update links to the user manual
parent 419ca715
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -609,8 +609,8 @@ btr_page_get_father_for_rec(
		fputs(
"InnoDB: You should dump + drop + reimport the table to fix the\n"
"InnoDB: corruption. If the crash happens at the database startup, see\n"
"InnoDB: section 6.1 of http://www.innodb.com/ibman.php about forcing\n"
"InnoDB: recovery. Then dump + drop + reimport.\n", stderr);
"InnoDB: http://dev.mysql.com/doc/mysql/en/Forcing_recovery.html about\n"
"InnoDB: forcing recovery. Then dump + drop + reimport.\n", stderr);
	}

	ut_a(btr_node_ptr_get_child_page_no(node_ptr) ==
+3 −3
Original line number Diff line number Diff line
@@ -1561,9 +1561,9 @@ buf_page_io_complete(
		"InnoDB: by dumping, dropping, and reimporting\n"
		"InnoDB: the corrupt table. You can use CHECK\n"
		"InnoDB: TABLE to scan your table for corruption.\n"
		"InnoDB: Look also at section 6.1 of\n"
		"InnoDB: http://www.innodb.com/ibman.php about\n"
		"InnoDB: forcing recovery.\n", stderr);
		"InnoDB: See also "
		"http://dev.mysql.com/doc/mysql/en/Forcing_recovery.html\n"
		"InnoDB: about forcing recovery.\n", stderr);
			  
			if (srv_force_recovery < SRV_FORCE_IGNORE_CORRUPT) {
				fputs(
+6 −3
Original line number Diff line number Diff line
@@ -2020,7 +2020,8 @@ dict_foreign_error_report(
		fputs("\nThe index in the foreign key in table is ", file);
		ut_print_name(file, fk->foreign_index->name);
		fputs(
"See http://www.innodb.com/ibman.php for correct foreign key definition.\n",
"\nSee http://dev.mysql.com/doc/mysql/en/InnoDB_foreign_key_constraints.html\n"
"for correct foreign key definition.\n",
		file);
	}
	mutex_exit(&dict_foreign_err_mutex);
@@ -2856,7 +2857,8 @@ dict_create_foreign_constraints_low(
		ut_print_name(ef, name);
		fprintf(ef, " where the columns appear\n"
"as the first columns. Constraint:\n%s\n"
"See http://www.innodb.com/ibman.php for correct foreign key definition.\n",
"nSee http://dev.mysql.com/doc/mysql/en/InnoDB_foreign_key_constraints.html\n"
"for correct foreign key definition.\n",
			start_of_latest_foreign);
		mutex_exit(&dict_foreign_err_mutex);

@@ -3121,7 +3123,8 @@ dict_create_foreign_constraints_low(
"Cannot find an index in the referenced table where the\n"
"referenced columns appear as the first columns, or column types\n"
"in the table and the referenced table do not match for constraint.\n"
"See http://www.innodb.com/ibman.php for correct foreign key definition.\n",
"See http://dev.mysql.com/doc/mysql/en/InnoDB_foreign_key_constraints.html\n"
"for correct foreign key definition.\n",
				start_of_latest_foreign);
			mutex_exit(&dict_foreign_err_mutex);

+3 −3
Original line number Diff line number Diff line
@@ -2701,9 +2701,9 @@ fseg_free_page_low(
"InnoDB: database!\n", page);
	crash:
		fputs(
"InnoDB: If the InnoDB recovery crashes here, see section 6.1\n"
"InnoDB: of http://www.innodb.com/ibman.php about forcing recovery.\n",
			stderr);
"InnoDB: Please refer to\n"
"InnoDB: http://dev.mysql.com/doc/mysql/en/Forcing_recovery.html\n"
"InnoDB: about forcing recovery.\n", stderr);
		ut_error;
	}
		
+2 −3
Original line number Diff line number Diff line
@@ -685,10 +685,9 @@ log_calc_max_ages(void)
"InnoDB: To get mysqld to start up, set innodb_thread_concurrency in my.cnf\n"
"InnoDB: to a lower value, for example, to 8. After an ERROR-FREE shutdown\n"
"InnoDB: of mysqld you can adjust the size of ib_logfiles, as explained in\n"
"InnoDB: section 5 of http://www.innodb.com/ibman.php",
"InnoDB: http://dev.mysql.com/doc/mysql/en/Adding_and_removing.html\n"
"InnoDB: Cannot continue operation. Calling exit(1).\n",
			(ulong)srv_thread_concurrency);
		fprintf(stderr,
"InnoDB: Cannot continue operation. Calling exit(1).\n");

		exit(1);
	}
Loading