Re: to_tsvector() chopping off trailing 's' characters

From: Wells Oliver <wells(dot)oliver(at)gmail(dot)com>
To: pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: to_tsvector() chopping off trailing 's' characters
Date: 2019-11-01 18:35:27
Message-ID: CAOC+FBWByhjrZTR7st1nfzqQ7g+yvjtB29oScpFAuMy398eJaQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Sorry for the follow up, meant to add I tried this:

select 'Thames', to_tsvector('simple', 'fat cats ate rats');

And it throws: ERROR: invalid input syntax for type oid: "simple"

Even though doing \dF in psql shows that 'simple' is available in the list
of text search configurations.

On Fri, Nov 1, 2019 at 11:28 AM Wells Oliver <wells(dot)oliver(at)gmail(dot)com> wrote:

> I don't understand this behavior in 12 (worked in 9.6), but:
>
> select 'Thames', to_tsvector('John Thames');
>
> Gives you a vector of: 'john':1 'thame':2
>
> And searching for the full 'Thames' returns no results.
>
> What's happening here?
>
> --
> Wells Oliver
> wells(dot)oliver(at)gmail(dot)com <wellsoliver(at)gmail(dot)com>
>

--
Wells Oliver
wells(dot)oliver(at)gmail(dot)com <wellsoliver(at)gmail(dot)com>

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2019-11-01 18:54:17 Re: to_tsvector() chopping off trailing 's' characters
Previous Message Wells Oliver 2019-11-01 18:28:17 to_tsvector() chopping off trailing 's' characters