summaryrefslogtreecommitdiff
path: root/sql/sql_plugin.h
diff options
context:
space:
mode:
authorserg@sergbook.mysql.com <>2006-05-31 18:07:32 +0200
committerserg@sergbook.mysql.com <>2006-05-31 18:07:32 +0200
commit2e16f1eccc18374b640624814616cf6266c57d71 (patch)
treef0869b784e9a06e5d5e23df82b2e60d2692a6c4f /sql/sql_plugin.h
parent4accfd296896219be5721d5570938a0247d00783 (diff)
downloadmariadb-git-2e16f1eccc18374b640624814616cf6266c57d71.tar.gz
after review fixes
Diffstat (limited to 'sql/sql_plugin.h')
-rw-r--r--sql/sql_plugin.h3
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 *);