Re: [GENERAL] tsquery error - Mailing list pgsql-general

From Albe Laurenz
Subject Re: [GENERAL] tsquery error
Date
Msg-id A737B7A37273E048B164557ADEF4A58B53A815EF@ntex2010i.host.magwien.gv.at
Whole thread Raw
In response to [GENERAL] tsquery error  (Stephen Davies <sdavies@sdc.com.au>)
List pgsql-general
Stephen Davies wrote:
> The following query give the error:
> 
> select
> id,title,dtype,source,used_for,ts_headline('english',content,to_tsquery('english','
> ma waterflux'),'minWords = 99, maxWords = 999') from info where  clob @@
> to_tsquery('english',' ma waterflux') order by title,dtype,source,used_for;
> ERROR:  syntax error in tsquery: " ma waterflux"
> 
> Remove either the "ma" or the "waterflux" and the query works.
> 
> What is causing the error?
> 
> (MA Waterflux is a product name.)

It is the fact that the string contains two words.

You would have to place an operator between the words,
probably & in that case.
(https://www.postgresql.org/docs/current/static/datatype-textsearch.html#DATATYPE-TSQUERY)

Or you use "plainto_tsquery" instead of "to_tsquery".

Yours,
Laurenz Albe

pgsql-general by date:

Previous
From: Krithika Venkatesh
Date:
Subject: [GENERAL] Materialised view - refresh
Next
From: Adam Brusselback
Date:
Subject: Re: [GENERAL] Materialised view - refresh