Thread: BUG #15751: Unexpected behaviour at plainto_tsquery funciton

BUG #15751: Unexpected behaviour at plainto_tsquery funciton

From
PG Bug reporting form
Date:
The following bug has been logged on the website:

Bug reference:      15751
Logged by:          Ozan Gerdaneri
Email address:      ozan.gerdaneri@gmail.com
PostgreSQL version: 11.0
Operating system:   win 10
Description:

Hi, 
My query is like this : 
.......
WHERE to_tsvector(COALESCE("blog"."name" )) @@ (plainto_tsquery("cat")) =
true

That is, I am searching for the word "cat" in name column. But the following
error is given. Why is    plainto_tsquery is looking for a column name?
                                                             ^
********** Error **********

ERROR: column "cat" does not exist
SQL state: 42703
Character: 511


Re: BUG #15751: Unexpected behaviour at plainto_tsquery funciton

From
Daniel Gustafsson
Date:
> On 13 Apr 2019, at 23:11, PG Bug reporting form <noreply@postgresql.org> wrote:

>
> My query is like this :
> .......
> WHERE to_tsvector(COALESCE("blog"."name" )) @@ (plainto_tsquery("cat")) =
> true
>
> That is, I am searching for the word "cat" in name column. But the following
> error is given. Why is    plainto_tsquery is looking for a column name?
>                                                             ^

Quoted strings become SQL identifiers, what you want to do is using single
quotes in order to make it a string: 'cat'

cheers ./daniel