diff options
author | unknown <serg@sergbook.mysql.com> | 2006-05-31 18:07:32 +0200 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2006-05-31 18:07:32 +0200 |
commit | 0de72ae91f3101ca4e41d3f9e0a960a3babbb56e (patch) | |
tree | f0869b784e9a06e5d5e23df82b2e60d2692a6c4f /sql/sql_plugin.h | |
parent | cc14a84c0c67a4498c5414556e004ee42363a91a (diff) | |
download | mariadb-git-0de72ae91f3101ca4e41d3f9e0a960a3babbb56e.tar.gz |
after review fixes
mysql-test/t/disabled.def:
enable test
Diffstat (limited to 'sql/sql_plugin.h')
-rw-r--r-- | sql/sql_plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_plugin.h b/sql/sql_plugin.h index 8459346fb53..b013beaba1f 100644 --- a/sql/sql_plugin.h +++ b/sql/sql_plugin.h @@ -58,7 +58,8 @@ struct st_plugin_int struct st_mysql_plugin *plugin; struct st_plugin_dl *plugin_dl; enum enum_plugin_state state; - uint ref_count; /* number of threads using the plugin */ + uint ref_count; /* number of threads using the plugin */ + void *data; /* plugin type specific, e.g. handlerton */ }; typedef int (*plugin_type_init)(struct st_plugin_int *); |