diff options
author | Monty <monty@mariadb.org> | 2015-12-23 11:57:42 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2015-12-23 11:57:42 +0200 |
commit | deef90eb753bfe132be2e3b46536a29dde93de8a (patch) | |
tree | 75acfe171631427e3d1e17c008844f93f04da98e /include/my_handler_errors.h | |
parent | 27e6fd9a596847a1a4c618d16ed43f6885dfe73a (diff) | |
download | mariadb-git-deef90eb753bfe132be2e3b46536a29dde93de8a.tar.gz |
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
Diffstat (limited to 'include/my_handler_errors.h')
-rw-r--r-- | include/my_handler_errors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/my_handler_errors.h b/include/my_handler_errors.h index 5af6a359348..38b2bf98d6e 100644 --- a/include/my_handler_errors.h +++ b/include/my_handler_errors.h @@ -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 */ |