BUG #15751: Unexpected behaviour at plainto_tsquery funciton

Started by PG Bug reporting formabout 7 years ago2 messagesbugs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

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

#2Daniel Gustafsson
dgustafsson@pivotal.io
In reply to: PG Bug reporting form (#1)
Re: BUG #15751: Unexpected behaviour at plainto_tsquery funciton

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