Re: Old tsearch functions

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Howard News <howardnews(at)selestial(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: Old tsearch functions
Date: 2019-01-30 17:20:17
Message-ID: 010c5d24-f704-3e44-ba5a-1855ecb8e0b3@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 1/30/19 9:07 AM, Howard News wrote:
> Hi,
>
> upgrading from 9.5 to 11.1, I have a few tsearch problems that appear to
> relate to a much older migration (8.3)
>
> Originally, for those that remember that far back, tsearch was a contrib
> module. However it appears that I still have some of the old tsearch
> functions in my database, and these were copied into the pg_dump that I
> restored into v11 and have caused some confusion and problems.
>
> For example, select to_tsquery('english', 'hello') would not work. The
> reason is the additional functions, domains etc that were added to the
> public schema, probably from the contrib module, which was removed in v10,
>
> Now I can delete all these extra functions and domains and change the
> types of all my tsvector columns from "public.tsvector" to the inbuilt
> type "tsvector", but is there an easier way or a script that exists to
> do this automatically? (I have a lot of databases with this issue)

Is to late to experiment with dropping the extension on a 9.5 database
and then dumping?

>
> Thanks
>
> Howard.
>
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Howard News 2019-01-30 17:57:39 Re: Old tsearch functions
Previous Message Howard News 2019-01-30 17:07:37 Old tsearch functions