diff options
author | unknown <serg@serg.mylan> | 2003-12-04 21:58:28 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-12-04 21:58:28 +0100 |
commit | b66c016f130934a8ee5a82b572bc46c93ad1f3e7 (patch) | |
tree | f52b83374a1d65b18565fed5c9f35dfcee9e3fb9 /include/ft_global.h | |
parent | cebe1c0eee300a00e0f35d7782d23383ffb025de (diff) | |
download | mariadb-git-b66c016f130934a8ee5a82b572bc46c93ad1f3e7.tar.gz |
make a clear distinction between max_word_length in *characters* and in *bytes*
Diffstat (limited to 'include/ft_global.h')
-rw-r--r-- | include/ft_global.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ft_global.h b/include/ft_global.h index df6860109e4..c30b0665216 100644 --- a/include/ft_global.h +++ b/include/ft_global.h @@ -26,8 +26,8 @@ extern "C" { #endif -#define FT_QUERY_MAXLEN 1024 -#define HA_FT_MAXLEN 254 +#define HA_FT_MAXBYTELEN 254 +#define HA_FT_MAXCHARLEN (HA_FT_MAXBYTELEN/3) typedef struct st_ft_info FT_INFO; struct _ft_vft |