diff options
author | unknown <heikki@hundin.mysql.fi> | 2004-02-24 17:17:02 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2004-02-24 17:17:02 +0200 |
commit | c72a9e7ede6ddee482dd8a9465b1f45ba8ff3abd (patch) | |
tree | a2c182c3e4c6603a2b3809740a60dae57252444b /innobase/include | |
parent | dd8adcc89ba54582794509741a49a2c1b1383cfb (diff) | |
download | mariadb-git-c72a9e7ede6ddee482dd8a9465b1f45ba8ff3abd.tar.gz |
ut0dbg.h:
If there is an assertion failur refer the user to section 6.1 of the InnoDB online manual about forcing recovery
innobase/include/ut0dbg.h:
If there is an assertion failur refer the user to section 6.1 of the InnoDB online manual about forcing recovery
Diffstat (limited to 'innobase/include')
-rw-r--r-- | innobase/include/ut0dbg.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/innobase/include/ut0dbg.h b/innobase/include/ut0dbg.h index 802557099fc..54df031067f 100644 --- a/innobase/include/ut0dbg.h +++ b/innobase/include/ut0dbg.h @@ -35,7 +35,11 @@ extern ulint* ut_dbg_null_ptr; fprintf(stderr,\ "\nInnoDB: We intentionally generate a memory trap.\n");\ fprintf(stderr,\ - "InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n");\ + "InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n"\ + "InnoDB: If you get repeated assertion failures or crashes, even\n"\ + "InnoDB: immediately after the mysqld startup, there may be\n"\ + "InnoDB: corruption in the InnoDB tablespace. See section 6.1 of\n"\ + "InnoDB: http://www.innodb.com/ibman.php about forcing recovery.\n");\ ut_dbg_stop_threads = TRUE;\ dbg_i = *(ut_dbg_null_ptr);\ if (dbg_i) {\ @@ -66,7 +70,11 @@ format characters */ fprintf(stderr,\ "\nInnoDB: We intentionally generate a memory trap.\n");\ fprintf(stderr,\ - "InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n");\ + "InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n"\ + "InnoDB: If you get repeated assertion failures or crashes, even\n"\ + "InnoDB: immediately after the mysqld startup, there may be\n"\ + "InnoDB: corruption in the InnoDB tablespace. See section 6.1 of\n"\ + "InnoDB: http://www.innodb.com/ibman.php about forcing recovery.\n");\ ut_dbg_stop_threads = TRUE;\ dbg_i = *(ut_dbg_null_ptr);\ if (dbg_i) {\ @@ -90,7 +98,11 @@ format characters */ fprintf(stderr,\ "InnoDB: We intentionally generate a memory trap.\n");\ fprintf(stderr,\ - "InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n");\ + "InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n"\ + "InnoDB: If you get repeated assertion failures or crashes, even\n"\ + "InnoDB: immediately after the mysqld startup, there may be\n"\ + "InnoDB: corruption in the InnoDB tablespace. See section 6.1 of\n"\ + "InnoDB: http://www.innodb.com/ibman.php about forcing recovery.\n");\ ut_dbg_stop_threads = TRUE;\ dbg_i = *(ut_dbg_null_ptr);\ printf("%lu", dbg_i);\ |