Re: FTS question

From: Oleg Bartunov <oleg(at)sai(dot)msu(dot)su>
To: Damjan Rems <d_rems(at)yahoo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: FTS question
Date: 2008-07-01 07:45:41
Message-ID: Pine.LNX.4.64.0807011145050.11363@sn.sai.msu.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, 30 Jun 2008, Damjan Rems wrote:

> I created a FTS index:
> CREATE INDEX clients_fts ON clients USING gist( to_tsvector( 'english', name) )
>
> I can do FTS queries like:
> SELECT * FROM clients
> WHERE to_tsvector('english',name) @@ to_tsquery( 'english','somestring');
>
> But if I want to query just part of the string return set is empty:
> SELECT * FROM clients
> WHERE to_tsvector('english',name) @@ to_tsquery( 'english','somes');
>
> returns no results.
>
> Is it that postgresql doesn't support substring queries or have I missed something. I can not find anything on the net. Postgresql is v8.3.1.
>

prefix search support will be supported in 8.4.

Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
Sternberg Astronomical Institute, Moscow University, Russia
Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
phone: +007(495)939-16-83, +007(495)939-23-83

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Richard Huxton 2008-07-01 07:52:47 Re: FTS question
Previous Message Henry - Zen Search SA 2008-07-01 07:37:23 Re: "out of balance" result on select from suspected index corruption [RESOLVED]