Re: Tsearch2 lexeme position - Mailing list pgsql-general

From Teodor Sigaev
Subject Re: Tsearch2 lexeme position
Date
Msg-id 3F3A526A.5080401@sigaev.ru
Whole thread Raw
In response to Tsearch2 lexeme position  (Alexander Rüegg <arueegg@uni-bielefeld.de>)
Responses Re: Tsearch2 lexeme position  (Alexander Rüegg <arueegg@uni-bielefeld.de>)
List pgsql-general

Alexander Rüegg wrote:
> Hi,
>
> Is it possible to get all the positions of a lexeme in a result-set of a
> query? For example, we have the table
>
> TEXT                                                   TEXT_IDX
> 'TSearch2 is very cool'                                ...
>
> 'It would be much cooler with lexeme positions'
>
> Our query is
> SELECT text, position FROM thetable WHERE  text_idx @@ 'cool'::tsquery;
>                          ^^^^^^^^
> The result should be something like:
> 'TSearch2 is very cool', 4
> 'It would be much cooler with lexeme positions', 5
>
> If not, is there a function that returns the positions of a lexeme in a
> single entry?
>

You can write such function, but why do you need it? May be there is more simple
way to resolve your problem?

BTW, lexeme can have more that one position...



--
Teodor Sigaev                                  E-mail: teodor@sigaev.ru


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: PostGreSQL - Accessing It
Next
From: Dennis Gearon
Date:
Subject: Re: How to prevent vacuum and reindex from deadlocking.