mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +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)))
|
||||
doc++;
|
||||
|
||||
if (word->len >= ft_min_word_len && word->len < ft_max_word_len &&
|
||||
!is_stopword(word->pos, word->len))
|
||||
if (((word->len >= ft_min_word_len && !is_stopword(word->pos, word->len))
|
||||
|| param->trunc) && word->len < ft_max_word_len)
|
||||
{
|
||||
*start=doc;
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user