diff options
author | Michael Widenius <monty@mariadb.org> | 2014-12-20 15:44:23 +0200 |
---|---|---|
committer | Michael Widenius <monty@mariadb.org> | 2014-12-20 15:44:23 +0200 |
commit | 406b31e628145f6af0fa567c0e42b8391e5173bb (patch) | |
tree | aff311e03c5bb078fe67b090bd8a0e602beed547 /include/mysql/plugin.h | |
parent | 634428b37fd039b862c8277a0c7b0b5f56e765fc (diff) | |
download | mariadb-git-bb-10.1-eperi.tar.gz |
Fixes for encryption from eperibb-10.1-eperi
Diffstat (limited to 'include/mysql/plugin.h')
-rw-r--r-- | include/mysql/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mysql/plugin.h b/include/mysql/plugin.h index 07f3c26ba74..b610daabb06 100644 --- a/include/mysql/plugin.h +++ b/include/mysql/plugin.h @@ -89,7 +89,8 @@ typedef struct st_mysql_xid MYSQL_XID; #define MYSQL_REPLICATION_PLUGIN 6 /* The replication plugin type */ #define MYSQL_AUTHENTICATION_PLUGIN 7 /* The authentication plugin type */ #define MYSQL_VALIDATE_PASSWORD_PLUGIN 8 /* validate password plugin type */ -#define MYSQL_MAX_PLUGIN_TYPE_NUM 9 /* The number of plugin types */ +#define MYSQL_KEY_MANAGEMENT_PLUGIN 9 /* The number of plugin types */ +#define MYSQL_MAX_PLUGIN_TYPE_NUM 10 /* The number of plugin types */ /* We use the following strings to define licenses for plugins */ #define PLUGIN_LICENSE_PROPRIETARY 0 |