diff options
author | unknown <serg@serg.mylan> | 2005-12-29 21:29:02 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-12-29 21:29:02 +0100 |
commit | 79175e861c769ae527af87e58dddfa0815aa5d81 (patch) | |
tree | 15e551371c48425f7035589e5041bb6f637371be /sql/sql_plugin.h | |
parent | f8df12908c92a9e8bc290a5cef3987c1c807f352 (diff) | |
download | mariadb-git-79175e861c769ae527af87e58dddfa0815aa5d81.tar.gz |
after pull fixes
client/mysqlslap.c:
compilation errors
include/plugin.h:
comments corrected
sql/sql_plugin.cc:
LEX_STRING instead of char*,
MYSQL_HANDLERTON_INTERFACE_VERSION instead of 0x0000
sql/sql_plugin.h:
LEX_STRING instead of char*
sql/sql_show.cc:
LEX_STRING instead of char*.
STRING_WITH_LEN works only on string literals, not on expressions
Diffstat (limited to 'sql/sql_plugin.h')
-rw-r--r-- | sql/sql_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_plugin.h b/sql/sql_plugin.h index af0e5c8269a..f0b70ca9d26 100644 --- a/sql/sql_plugin.h +++ b/sql/sql_plugin.h @@ -53,7 +53,7 @@ struct st_plugin_int extern char *opt_plugin_dir_ptr; extern char opt_plugin_dir[FN_REFLEN]; -extern const char *plugin_type_names[]; +extern LEX_STRING plugin_type_names[]; extern int plugin_init(void); extern void plugin_load(void); extern void plugin_free(void); |