mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
ignore ft_min_word_len and stopword check for truncated words in the query
This commit is contained in:
@@ -167,8 +167,8 @@ byte ft_get_word(byte **start, byte *end, FT_WORD *word, FTB_PARAM *param)
|
|||||||
if ((param->trunc=(doc<end && *doc == FTB_TRUNC)))
|
if ((param->trunc=(doc<end && *doc == FTB_TRUNC)))
|
||||||
doc++;
|
doc++;
|
||||||
|
|
||||||
if (word->len >= ft_min_word_len && word->len < ft_max_word_len &&
|
if (((word->len >= ft_min_word_len && !is_stopword(word->pos, word->len))
|
||||||
!is_stopword(word->pos, word->len))
|
|| param->trunc) && word->len < ft_max_word_len)
|
||||||
{
|
{
|
||||||
*start=doc;
|
*start=doc;
|
||||||
return 1;
|
return 1;
|
||||||
|
Reference in New Issue
Block a user