Re: [GENERAL] tsquery error
От | Albe Laurenz |
---|---|
Тема | Re: [GENERAL] tsquery error |
Дата | |
Msg-id | A737B7A37273E048B164557ADEF4A58B53A815EF@ntex2010i.host.magwien.gv.at обсуждение исходный текст |
Ответ на | [GENERAL] tsquery error (Stephen Davies <sdavies@sdc.com.au>) |
Список | 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 по дате отправления: