summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2006-01-26 09:51:24 +0100
committerunknown <serg@serg.mylan>2006-01-26 09:51:24 +0100
commit2b4d61cae50ba213f4498e2c6d495227def31e2d (patch)
tree435461d72ca1cab16e7df8bc776e29ecc73622ac /include
parent375afff3bd9d427921c81c3f190789b96c9c83ee (diff)
parent898bf3b14a861415b8031814c03d525e9b87c520 (diff)
downloadmariadb-git-2b4d61cae50ba213f4498e2c6d495227def31e2d.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new
into serg.mylan:/usr/home/serg/Abk/mysql-5.1
Diffstat (limited to 'include')
-rw-r--r--include/plugin.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/plugin.h b/include/plugin.h
index b93e3bafe73..06eb0e91366 100644
--- a/include/plugin.h
+++ b/include/plugin.h
@@ -75,7 +75,7 @@ struct st_mysql_plugin
const char *descr; /* general descriptive text (for SHOW PLUGINS ) */
int (*init)(void); /* the function to invoke when plugin is loaded */
int (*deinit)(void); /* the function to invoke when plugin is unloaded */
- uint version; /* plugin version (for SHOW PLUGINS) */
+ unsigned int version; /* plugin version (for SHOW PLUGINS) */
struct st_mysql_show_var *status_vars;
};
@@ -176,11 +176,11 @@ typedef struct st_mysql_ftparser_boolean_info
enum enum_ft_token_type type;
int yesno;
int weight_adjust;
- bool wasign;
- bool trunc;
+ char wasign;
+ char trunc;
/* These are parser state and must be removed. */
- byte prev;
- byte *quot;
+ char prev;
+ char *quot;
} MYSQL_FTPARSER_BOOLEAN_INFO;
@@ -224,14 +224,14 @@ typedef struct st_mysql_ftparser_boolean_info
typedef struct st_mysql_ftparser_param
{
- int (*mysql_parse)(void *param, byte *doc, uint doc_len);
- int (*mysql_add_word)(void *param, byte *word, uint word_len,
+ int (*mysql_parse)(void *param, char *doc, int doc_len);
+ int (*mysql_add_word)(void *param, char *word, int word_len,
MYSQL_FTPARSER_BOOLEAN_INFO *boolean_info);
void *ftparser_state;
void *mysql_ftparam;
- CHARSET_INFO *cs;
- byte *doc;
- uint length;
+ struct charset_info_st *cs;
+ char *doc;
+ int length;
int mode;
} MYSQL_FTPARSER_PARAM;