mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
plugin maturity is unsigned
This commit is contained in:
@@ -455,7 +455,7 @@ struct st_maria_plugin
|
|||||||
struct st_mysql_show_var *status_vars;
|
struct st_mysql_show_var *status_vars;
|
||||||
struct st_mysql_sys_var **system_vars;
|
struct st_mysql_sys_var **system_vars;
|
||||||
const char *version_info; /* plugin version string */
|
const char *version_info; /* plugin version string */
|
||||||
int maturity; /* MariaDB_PLUGIN_MATURITY_XXX */
|
unsigned int maturity; /* MariaDB_PLUGIN_MATURITY_XXX */
|
||||||
};
|
};
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
|
@@ -91,7 +91,7 @@ struct st_maria_plugin
|
|||||||
struct st_mysql_show_var *status_vars;
|
struct st_mysql_show_var *status_vars;
|
||||||
struct st_mysql_sys_var **system_vars;
|
struct st_mysql_sys_var **system_vars;
|
||||||
const char *version_info;
|
const char *version_info;
|
||||||
int maturity;
|
unsigned int maturity;
|
||||||
};
|
};
|
||||||
enum enum_ftparser_mode
|
enum enum_ftparser_mode
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user