diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-06-15 21:12:13 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-06-15 21:12:13 +0200 |
commit | fc241c1ace6d83899fec3af234b4df776b35bfb0 (patch) | |
tree | e2116d09dacaf537edeab331e20e33e09dcc5f96 /include | |
parent | feebb064d6d7ed99a9f8d81c67a510ada48a4630 (diff) | |
download | mariadb-git-fc241c1ace6d83899fec3af234b4df776b35bfb0.tar.gz |
plugin maturity is unsigned
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql/plugin.h | 2 | ||||
-rw-r--r-- | include/mysql/plugin_auth.h.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/mysql/plugin.h b/include/mysql/plugin.h index 835e691daf3..ad3427a3ab5 100644 --- a/include/mysql/plugin.h +++ b/include/mysql/plugin.h @@ -455,7 +455,7 @@ struct st_maria_plugin struct st_mysql_show_var *status_vars; struct st_mysql_sys_var **system_vars; const char *version_info; /* plugin version string */ - int maturity; /* MariaDB_PLUGIN_MATURITY_XXX */ + unsigned int maturity; /* MariaDB_PLUGIN_MATURITY_XXX */ }; /************************************************************************* diff --git a/include/mysql/plugin_auth.h.pp b/include/mysql/plugin_auth.h.pp index 7db3dbb4715..977c87493a4 100644 --- a/include/mysql/plugin_auth.h.pp +++ b/include/mysql/plugin_auth.h.pp @@ -91,7 +91,7 @@ struct st_maria_plugin struct st_mysql_show_var *status_vars; struct st_mysql_sys_var **system_vars; const char *version_info; - int maturity; + unsigned int maturity; }; enum enum_ftparser_mode { |