pgsql: Limit to_tsvector_byid's initial array allocation to something s

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Limit to_tsvector_byid's initial array allocation to something s
Дата
Msg-id E1qknr8-005tDC-KH@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Limit to_tsvector_byid's initial array allocation to something sane.

The initial estimate of the number of distinct ParsedWords is just
that: an estimate.  Don't let it exceed what palloc is willing to
allocate.  If in fact we need more entries, we'll eventually fail
trying to enlarge the array.  But if we don't, this allows success on
inputs that currently draw "invalid memory alloc request size".

Per bug #18080 from Uwe Binder.  Back-patch to all supported branches.

Discussion: https://postgr.es/m/18080-d5c5e58fef8c99b7@postgresql.org

Branch
------
master

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

Modified Files
--------------
src/backend/tsearch/to_tsany.c | 2 ++
1 file changed, 2 insertions(+)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Doc: improve cross-reference in Makefile comment.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Limit to_tsvector_byid's initial array allocation to something s