1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Don't send error 0 to my_printf_error()

Fixed by adding HA_ERR_INFO as a informational warning to by used by MyISAM
This is used to inform when we create a backup copy of the data file.

Also improved informational messages when creating backup copies of data and index files
This commit is contained in:
Monty
2015-12-23 11:57:42 +02:00
parent 27e6fd9a59
commit deef90eb75
4 changed files with 10 additions and 7 deletions

View File

@@ -95,7 +95,8 @@ static const char *handler_error_messages[]=
"Disk full",
"Incompatible key or row definition between the MariaDB .frm file and the information in the storage engine. You have to dump and restore the table to fix this",
"Too many words in a FTS phrase or proximity search",
"Table encrypted but decryption failed. This could be because correct encryption management plugin is not loaded, used encryption key is not available or encryption method does not match."
"Table encrypted but decryption failed. This could be because correct encryption management plugin is not loaded, used encryption key is not available or encryption method does not match.",
"Information, not an error"
};
#endif /* MYSYS_MY_HANDLER_ERRORS_INCLUDED */