mirror of
https://github.com/MariaDB/server.git
synced 2026-04-27 18:55:31 +02:00
Compile fixes for hpita2.
sql/sql_plugin.cc: Can't initialize char * from const char *, so add cast.
This commit is contained in:
parent
61d43a6ce5
commit
b2168530d9
1 changed files with 3 additions and 3 deletions
|
|
@ -23,9 +23,9 @@ char *opt_plugin_dir_ptr;
|
|||
char opt_plugin_dir[FN_REFLEN];
|
||||
LEX_STRING plugin_type_names[]=
|
||||
{
|
||||
{ STRING_WITH_LEN("UDF") },
|
||||
{ STRING_WITH_LEN("STORAGE ENGINE") },
|
||||
{ STRING_WITH_LEN("FTPARSER") }
|
||||
{ (char *)STRING_WITH_LEN("UDF") },
|
||||
{ (char *)STRING_WITH_LEN("STORAGE ENGINE") },
|
||||
{ (char *)STRING_WITH_LEN("FTPARSER") }
|
||||
};
|
||||
static const char *plugin_interface_version_sym=
|
||||
"_mysql_plugin_interface_version_";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue