Re: 7.1->7.2 data import timestamp problems

Поиск
Список
Период
Сортировка
От Dan Langille
Тема Re: 7.1->7.2 data import timestamp problems
Дата
Msg-id 200202232014.g1NKEuk43959@lists.unixathome.org
обсуждение исходный текст
Ответ на Re: 7.1->7.2 data import timestamp problems  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: 7.1->7.2 data import timestamp problems  (Sean Chittenden <sean@chittenden.org>)
Список pgsql-admin
On 23 Feb 2002 at 14:50, Tom Lane wrote:

> "Dan Langille" <dan@langille.org> writes:
> > now I'm getting:  ERROR: SearchSysCache: Bad cache id 27
>
> I believe we've seen this from trying to load a 7.1 plpgsql.so
> into 7.2.

Tom!  Well done.  Thank you.  That was the problem.[1] After correcting
that, I started to get:

   ERROR:  fmgr_info: function 944463: cache lookup failed

I tried to the just reload the stored procedures, but had to reload the
entire db to fix that one.

Much appreciated.

[1] - the change I made: this

    CREATE FUNCTION "plpgsql_call_handler" () RETURNS opaque AS
    '/usr/local/lib/plpgsql.so', 'plpgsql_call_handler' LANGUAGE 'C';

became

    CREATE FUNCTION "plpgsql_call_handler" () RETURNS opaque AS
    '/usr/local/lib/postgresql/plpgsql.so', 'plpgsql_call_handler'
    LANGUAGE 'C';

which is the default location under the latest FreeBSD port.
--
Dan Langille
The FreeBSD Diary - http://freebsddiary.org/ - practical examples


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: 7.1->7.2 data import timestamp problems
Следующее
От: Sean Chittenden
Дата:
Сообщение: Re: 7.1->7.2 data import timestamp problems