| 1 | /* Copyright (C) 2006 MySQL AB & MySQL Finland AB & TCX DataKonsult AB |
| 2 | |
| 3 | This program is free software; you can redistribute it and/or modify |
| 4 | it under the terms of the GNU General Public License as published by |
| 5 | the Free Software Foundation; version 2 of the License. |
| 6 | |
| 7 | This program is distributed in the hope that it will be useful, |
| 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | GNU General Public License for more details. |
| 11 | |
| 12 | You should have received a copy of the GNU General Public License |
| 13 | along with this program; if not, write to the Free Software |
| 14 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ |
| 15 | |
| 16 | /* Written by Sergei A. Golubchik, who has a shared copyright to this code */ |
| 17 | |
| 18 | /* some definitions for full-text indices */ |
| 19 | |
| 20 | #include "maria_def.h" |
| 21 | #include "ft_global.h" |
| 22 | |
| 23 | /* If HA_FT_MAXLEN is change to 127 or over, it must be tested properly as |
| 24 | it may cause different representation on disk for full text indexes |
| 25 | */ |
| 26 | #define HA_FT_MAXLEN 126 |
| 27 | |
| 28 | int _ma_ft_cmp(MARIA_HA *, uint, const uchar *, const uchar *); |
| 29 | int _ma_ft_add(MARIA_HA *, uint, uchar *, const uchar *, my_off_t); |
| 30 | int _ma_ft_del(MARIA_HA *, uint, uchar *, const uchar *, my_off_t); |
| 31 | |
| 32 | my_bool _ma_ft_convert_to_ft2(MARIA_HA *, MARIA_KEY *); |
| 33 | |