mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
WL#2246 "IM: Add ability to change instance options, add server logs handling" ported to the
current version of the IM
This commit is contained in:
@ -57,6 +57,15 @@ static const char *mysqld_error_message(unsigned sql_errno)
|
||||
" or resources shortage";
|
||||
case ER_STOP_INSTANCE:
|
||||
return "Cannot stop instance";
|
||||
case ER_NO_SUCH_LOG:
|
||||
return "The instance has no such log enabled";
|
||||
case ER_OPEN_LOGFILE:
|
||||
return "Cannot open log file";
|
||||
case ER_GUESS_LOGFILE:
|
||||
return "Cannot guess the log filename. Try specifying full log name"
|
||||
"in the instance options";
|
||||
case ER_ACCESS_OPTION_FILE:
|
||||
return "Cannot open the option file to edit. Check permissions";
|
||||
default:
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user