summaryrefslogtreecommitdiff
path: root/myisam/ft_stopwords.c
diff options
context:
space:
mode:
authorram@gw.udmsearch.izhnet.ru <>2002-05-21 21:54:08 +0500
committerram@gw.udmsearch.izhnet.ru <>2002-05-21 21:54:08 +0500
commit3b43cb2960b2f44b78d63fe94b249ff52da9d3c4 (patch)
tree33c8cdcfd2d233bc3b663c05fd4bd9ca99b2bb5e /myisam/ft_stopwords.c
parentba963bb64dbb51e6070fd34a17fc52335063cf4a (diff)
downloadmariadb-git-3b43cb2960b2f44b78d63fe94b249ff52da9d3c4.tar.gz
BTREE heap key structure is now the same as MyISAM
_mi_compare_text -> mi_compate_text Changes according Monty's suggestions
Diffstat (limited to 'myisam/ft_stopwords.c')
-rw-r--r--myisam/ft_stopwords.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/myisam/ft_stopwords.c b/myisam/ft_stopwords.c
index 0e4112bb29a..170442c71de 100644
--- a/myisam/ft_stopwords.c
+++ b/myisam/ft_stopwords.c
@@ -28,9 +28,9 @@ static TREE *stopwords3=NULL;
static int FT_STOPWORD_cmp(void* cmp_arg __attribute__((unused)),
FT_STOPWORD *w1, FT_STOPWORD *w2)
{
- return _mi_compare_text(default_charset_info,
- (uchar *)w1->pos,w1->len,
- (uchar *)w2->pos,w2->len,0);
+ return mi_compare_text(default_charset_info,
+ (uchar *)w1->pos,w1->len,
+ (uchar *)w2->pos,w2->len,0);
}
int ft_init_stopwords(const char **sws)