diff options
author | unknown <serg@infomag.ape.relarn.ru> | 2000-08-25 19:56:55 +0400 |
---|---|---|
committer | unknown <serg@infomag.ape.relarn.ru> | 2000-08-25 19:56:55 +0400 |
commit | fe26eac2198e79de6e23c17c5033a5c7bc8e1d41 (patch) | |
tree | ad2b5aff206599e2ee78906e3fbf28616044ffe1 /myisam/fulltext.h | |
parent | e7f6ed657df487531872b61355dfb3a88e0bae57 (diff) | |
download | mariadb-git-fe26eac2198e79de6e23c17c5033a5c7bc8e1d41.tar.gz |
Stopwords (English only); fulltext keys now can be repaired
myisam/fulltext.h:
stopwords moved to include/ft_global.h
myisam/mi_check.c:
fulltext keys now can be repaired
include/ft_global.h:
stopwords declaration
sql/ha_myisam.cc:
bug in ::repair
sql/mysqld.cc:
stopwords initialized with PRECOMPILED_STOPWORDS
include/Makefile.am:
because `bk ci' set permissions to 444, the my_global.h
should be removed, not overwritten.]
Diffstat (limited to 'myisam/fulltext.h')
-rw-r--r-- | myisam/fulltext.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/myisam/fulltext.h b/myisam/fulltext.h index 3555abe1a1c..8fcac8172b1 100644 --- a/myisam/fulltext.h +++ b/myisam/fulltext.h @@ -1,15 +1,15 @@ /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ @@ -35,8 +35,6 @@ extern const MI_KEYSEG ft_keysegs[FT_SEGS]; -extern const char *ft_precompiled_stopwords[]; - int _mi_ft_cmp(MI_INFO *, uint, const byte *, const byte *); int _mi_ft_add(MI_INFO *, uint, byte *, const byte *, my_off_t); int _mi_ft_del(MI_INFO *, uint, byte *, const byte *, my_off_t); |