Commit f59bbb4f authored by unknown's avatar unknown

Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-5.1-new

into  april.(none):/home/svoj/devel/mysql/warnings/mysql-5.1-new

parents 012cd81b f6d3d2fe
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
int _mysql_plugin_interface_version_= MYSQL_PLUGIN_INTERFACE_VERSION; \ int _mysql_plugin_interface_version_= MYSQL_PLUGIN_INTERFACE_VERSION; \
int _mysql_sizeof_struct_st_plugin_= sizeof(struct st_mysql_plugin); \ int _mysql_sizeof_struct_st_plugin_= sizeof(struct st_mysql_plugin); \
struct st_mysql_plugin _mysql_plugin_declarations_[]= { struct st_mysql_plugin _mysql_plugin_declarations_[]= {
#define mysql_declare_plugin_end ,{0,0,0,0,0,0,0,0}} #define mysql_declare_plugin_end ,{0,0,0,0,0,0,0,0,0}}
/* /*
declarations for SHOW STATUS support in plugins declarations for SHOW STATUS support in plugins
......
...@@ -98,7 +98,8 @@ static int simple_parser_plugin_deinit(void) ...@@ -98,7 +98,8 @@ static int simple_parser_plugin_deinit(void)
1 failure (cannot happen) 1 failure (cannot happen)
*/ */
static int simple_parser_init(MYSQL_FTPARSER_PARAM *param) static int simple_parser_init(MYSQL_FTPARSER_PARAM *param
__attribute__((unused)))
{ {
return(0); return(0);
} }
...@@ -118,7 +119,8 @@ static int simple_parser_init(MYSQL_FTPARSER_PARAM *param) ...@@ -118,7 +119,8 @@ static int simple_parser_init(MYSQL_FTPARSER_PARAM *param)
1 failure (cannot happen) 1 failure (cannot happen)
*/ */
static int simple_parser_deinit(MYSQL_FTPARSER_PARAM *param) static int simple_parser_deinit(MYSQL_FTPARSER_PARAM *param
__attribute__((unused)))
{ {
return(0); return(0);
} }
...@@ -179,7 +181,7 @@ int simple_parser_parse(MYSQL_FTPARSER_PARAM *param) ...@@ -179,7 +181,7 @@ int simple_parser_parse(MYSQL_FTPARSER_PARAM *param)
add_word(param, start, end - start); add_word(param, start, end - start);
break; break;
} }
else if (isspace(*end)) else if (my_isspace(param->cs, *end))
{ {
if (end > start) if (end > start)
add_word(param, start, end - start); add_word(param, start, end - start);
...@@ -208,7 +210,7 @@ static struct st_mysql_ftparser simple_parser_descriptor= ...@@ -208,7 +210,7 @@ static struct st_mysql_ftparser simple_parser_descriptor=
struct st_mysql_show_var simple_status[]= struct st_mysql_show_var simple_status[]=
{ {
{"static", "just a static text", SHOW_CHAR}, {"static", (char *)"just a static text", SHOW_CHAR},
{"called", (char *)&number_of_calls, SHOW_LONG}, {"called", (char *)&number_of_calls, SHOW_LONG},
{0,0,0} {0,0,0}
}; };
...@@ -227,6 +229,6 @@ mysql_declare_plugin ...@@ -227,6 +229,6 @@ mysql_declare_plugin
simple_parser_plugin_init, /* init function (when loaded) */ simple_parser_plugin_init, /* init function (when loaded) */
simple_parser_plugin_deinit,/* deinit function (when unloaded) */ simple_parser_plugin_deinit,/* deinit function (when unloaded) */
0x0001, /* version */ 0x0001, /* version */
&simple_status /* status variables */ simple_status /* status variables */
} }
mysql_declare_plugin_end; mysql_declare_plugin_end;
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