Re: contrib/tsearch

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Re: contrib/tsearch
Дата
Msg-id GNELIHDDFBOCMGBFGEFOCEBGCEAA.chriskl@familyhealth.com.au
обсуждение исходный текст
Ответ на contrib/tsearch  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Ответы Re: contrib/tsearch  (Oleg Bartunov <oleg@sai.msu.su>)
Список pgsql-hackers
Hmmm...thinking about it, maybe 'herring' is being reduced to 'her' after
the stemming process and hence is thought to be a stopword?  This is a bug,
but how should it be fixed?

Although, tests don't support that:

usa=# select food_id, brand,description,ftiidx from food_foods where ftiidx
## 'himring';food_id | brand | description | ftiidx
---------+-------+-------------+--------
(0 rows)
usa=# select food_id, brand,description,ftiidx from food_foods where ftiidx
## 'hisring';food_id | brand | description | ftiidx
---------+-------+-------------+--------
(0 rows)

usa=# select food_id, brand,description,ftiidx from food_foods where ftiidx
## 'hising';food_id | brand | description | ftiidx
---------+-------+-------------+--------
(0 rows)

usa=# select food_id, brand,description,ftiidx from food_foods where ftiidx
## 'himing';food_id | brand | description | ftiidx
---------+-------+-------------+--------
(0 rows)

All work...?

Chris

> -----Original Message-----
> From: pgsql-hackers-owner@postgresql.org
> [mailto:pgsql-hackers-owner@postgresql.org]On Behalf Of Christopher
> Kings-Lynne
> Sent: Thursday, 5 September 2002 2:36 PM
> To: Hackers
> Subject: [HACKERS] contrib/tsearch
>
>
> Hi Oleg/Teodor,
>
> I'm sorry to keep posting bugs without patches, but I'm just
> hoping you guys
> know the answer faster than I...I know you're busy.
>
> What does tsearch have against the word 'herring' (as in the
> fish).  Why is
> it considered a stopword?
>
> Attached is example queries...
>
> Chris
>



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

Предыдущее
От: "Christopher Kings-Lynne"
Дата:
Сообщение: contrib/tsearch
Следующее
От: Hannu Krosing
Дата:
Сообщение: Re: Inheritance