Re: Question about pg_upgrade from 9.2 to X.X

Поиск
Список
Период
Сортировка
От Perumal Raj
Тема Re: Question about pg_upgrade from 9.2 to X.X
Дата
Msg-id CALvqh4qy_SUJROYJmMVqi8u5iZBrhfsN7jnwVHwb0GfqcL84ow@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Question about pg_upgrade from 9.2 to X.X  (Justin Pryzby <pryzby@telsasoft.com>)
Ответы Re: Question about pg_upgrade from 9.2 to X.X  (Perumal Raj <perucinci@gmail.com>)
Список pgsql-general
Thanks.Will decently try that option and keep you posted.

Thanks again for redirecting to right group.


Perumal Raju

On Sun, Mar 3, 2019, 6:51 AM Justin Pryzby <pryzby@telsasoft.com> wrote:
Moving to -general list (-hackers is for development topics like proposed
patches and patch reviews and beta testing and crash reports).

On Thu, Feb 28, 2019 at 10:13:58AM -0800, Perumal Raj wrote:
> could not load library "$libdir/pg_reorg":
> ERROR:  could not access file "$libdir/pg_reorg": No such file or directory

As Sergei said, you can run pg_dump -s and look for references to reorg, and
drop them.

Or, you could try this:
CREATE EXTENSION pg_reorg FROM unpackaged;

Or maybe this:
CREATE EXTENSION pg_repack FROM unpackaged;

If that works, you can DROP EXTENSION pg_repack;

Otherwise, I think you can maybe do something like:
DROP SCHEMA pg_repack CASCADE; -- or,
DROP SCHEMA pg_reorg CASCADE;

Please send output of: \dn

В списке pgsql-general по дате отправления:

Предыдущее
От: Michael Paquier
Дата:
Сообщение: Re: Future Non-server Windows support???
Следующее
От: Thomas Kellerer
Дата:
Сообщение: Re: Where **not** to use PostgreSQL?