pgsql: In the Snowball dictionary, don't try to stem excessively-long w

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: In the Snowball dictionary, don't try to stem excessively-long w
Дата
Msg-id E1oTOv7-000llJ-1A@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
In the Snowball dictionary, don't try to stem excessively-long words.

If the input word exceeds 1000 bytes, don't pass it to the stemmer;
just return it as-is after case folding.  Such an input is surely
not a word in any human language, so whatever the stemmer might
do to it would be pretty dubious in the first place.  Adding this
restriction protects us against a known recursion-to-stack-overflow
problem in the Turkish stemmer, and it seems like good insurance
against any other safety or performance issues that may exist in
the Snowball stemmers.  (I note, for example, that they contain no
CHECK_FOR_INTERRUPTS calls, so we really don't want them running
for a long time.)  The threshold of 1000 bytes is arbitrary.

An alternative definition could have been to treat such words as
stopwords, but that seems like a bigger break from the old behavior.

Per report from Egor Chindyaskin and Alexander Lakhin.
Thanks to Olly Betts for the recommendation to fix it this way.

Discussion: https://postgr.es/m/1661334672.728714027@f473.i.mail.ru

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/f5aa855cd8a63cd695c5f9ff097c7bc445872cdf

Modified Files
--------------
src/backend/snowball/dict_snowball.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: pgsql: Fix a bug in roles_is_member_of.
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Fix MSVC warning in compat_informix/rnull.pgc