diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ft_global.h | 2 | ||||
-rw-r--r-- | include/mysqld_error.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/ft_global.h b/include/ft_global.h index 8588684907d..0dbef652ce2 100644 --- a/include/ft_global.h +++ b/include/ft_global.h @@ -32,7 +32,7 @@ extern "C" { typedef struct st_ft_info FT_INFO; struct _ft_vft { int (*read_next)(FT_INFO *, char *); - float (*find_relevance)(FT_INFO *, my_off_t); + float (*find_relevance)(FT_INFO *, my_off_t, byte *); void (*close_search)(FT_INFO *); float (*get_relevance)(FT_INFO *); my_off_t (*get_docid)(FT_INFO *); diff --git a/include/mysqld_error.h b/include/mysqld_error.h index a4e7066d483..5ac14c1155b 100644 --- a/include/mysqld_error.h +++ b/include/mysqld_error.h @@ -222,4 +222,5 @@ #define ER_CANT_UPDATE_WITH_READLOCK 1219 #define ER_MIXING_NOT_ALLOWED 1220 #define ER_DUP_ARGUMENT 1221 -#define ER_ERROR_MESSAGES 222 +#define ER_TABLE_CANT_HANDLE_FULLTEXT 1222 +#define ER_ERROR_MESSAGES 223 |