Re: BUG #17917: to_tsquery syntax error - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #17917: to_tsquery syntax error
Date
Msg-id 2957538.1683121573@sss.pgh.pa.us
Whole thread Raw
In response to BUG #17917: to_tsquery syntax error  (PG Bug reporting form <noreply@postgresql.org>)
Responses Re: BUG #17917: to_tsquery syntax error  (Cyrus Lozano <cyloz28@gmail.com>)
List pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> select to_tsquery('lowercase', plainto_tsquery('lowercase', 'test')::text ||
> ':*');

> the above query runs successfully in Windows but got an error in Fedora 38:
> ERROR: syntax error in tsquery: ":*"

Works for me, after substituting a text search configuration name that
I had installed:

=# select to_tsquery('english', plainto_tsquery('english', 'test')::text ||
':*');
 to_tsquery 
------------
 'test':*
(1 row)

I think you mistyped something in the Fedora case.  The error message
is pretty clear that what to_tsquery() got was only ':*'.

            regards, tom lane



pgsql-bugs by date:

Previous
From: RekGRpth
Date:
Subject: Re: BUG #17916: Expression IN list translates to unqualified operator
Next
From: "David G. Johnston"
Date:
Subject: Re: BUG #17916: Expression IN list translates to unqualified operator