pgsql: Fix two bugs in tsquery @> operator.

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Fix two bugs in tsquery @> operator.
Дата
Msg-id E1Xig2M-0003vk-Ay@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Fix two bugs in tsquery @> operator.  (Michael Paquier <michael.paquier@gmail.com>)
Список pgsql-committers
Fix two bugs in tsquery @> operator.

1. The comparison for matching terms used only the CRC to decide if there's
a match. Two different terms with the same CRC gave a match.

2. It assumed that if the second operand has more terms than the first, it's
never a match. That assumption is bogus, because there can be duplicate
terms in either operand.

Rewrite the implementation in a way that doesn't have those bugs.

Backpatch to all supported versions.

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/604d94d4cacc787bfa41452785a2927c24829fc5

Modified Files
--------------
src/backend/utils/adt/tsquery_op.c |  131 +++++++++++++++++++++++++-----------
1 file changed, 90 insertions(+), 41 deletions(-)


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: Add variable names to two LWLock C prototypes
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Fix two bugs in tsquery @> operator.