Commit d1e11ffc authored by vasil's avatar vasil

branches/zip:

Change an error message.

Suggested by:	Ken
parent 9dd184ef
...@@ -36,10 +36,10 @@ static const char plugin_author[] = "Innobase Oy"; ...@@ -36,10 +36,10 @@ static const char plugin_author[] = "Innobase Oy";
#define FAIL_IF_INNODB_NOT_STARTED(plugin_name) \ #define FAIL_IF_INNODB_NOT_STARTED(plugin_name) \
do { \ do { \
if (!srv_was_started) { \ if (!srv_was_started) { \
sql_print_error("InnoDB: Refusing to start the "\ sql_print_error("InnoDB: Cannot install the " \
plugin_name " plugin when the " \ plugin_name " plugin because " \
"InnoDB storage engine plugin " \ "the InnoDB storage engine is " \
"is not started."); \ "not installed."); \
DBUG_RETURN(1); \ DBUG_RETURN(1); \
} \ } \
} while (0) } while (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment