1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fix bug #11830883, SUPPORT "CORRUPTED" BIT FOR INNODB TABLES AND INDEXES.

Also addressed issues in bug #11745133, where we could mark a table
corrupted instead of crashing the server when found a corrupted buffer/page
if the table created with innodb_file_per_table on.
This commit is contained in:
Jimmy Yang
2011-08-16 18:07:59 -07:00
parent 049225eb57
commit 177d8b0c12
30 changed files with 915 additions and 55 deletions

View File

@ -81,7 +81,8 @@ static const char *handler_error_messages[]=
"File to short; Expected more data in file",
"Read page with wrong checksum",
"Too many active concurrent transactions",
"Index column length exceeds limit"
"Index column length exceeds limit",
"Index corrupted"
};
extern void my_handler_error_register(void);