Re: Results in ERROR: syntax error in tsquery:

From: Oleg Bartunov <obartunov(at)gmail(dot)com>
To: Kiran <bangalore(dot)kiran(at)gmail(dot)com>
Cc: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Results in ERROR: syntax error in tsquery:
Date: 2016-09-19 09:19:31
Message-ID: CAF4Au4wY8Eq-1Q-q7rtLGHhKneD6GC_4w9opKweKNyRLiiqabA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, Sep 19, 2016 at 3:46 AM, Kiran <bangalore(dot)kiran(at)gmail(dot)com> wrote:
> Dear All,
>
> I have a ts_vector column in question table called weighted_tsv.
> I am trying to search using ts_query as follows
>
> SELECT *
>
> FROM question
>
> WHERE weighted_tsv @@ to_tsquery('Hur ofta');

you should use to_tsquery('Hur & ofta') ! Read
https://www.postgresql.org/docs/9.5/static/datatype-textsearch.html

>
>
> But the query results in an error as follows:
>
> ERROR: function ts_query(unknown) does not exist
>
> LINE 1: ...* from question where weighted_tsv @@ ts_query('...
>
> HINT: No function matches the given name and argument types. You might need
> to add explicit type casts.
>
>
> What is the reason I am getting this error I am not able to figure it out.
>
> It would be of great help if anyone point me into right direction.
>
>
> Thanks
>
> Kiran
>
>
>
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Oleg Bartunov 2016-09-19 09:21:08 Re: Results in ERROR: syntax error in tsquery:
Previous Message Kiran 2016-09-19 08:46:30 Results in ERROR: syntax error in tsquery: