Re: 7.1->7.2 data import timestamp problems - Mailing list pgsql-admin

From Dan Langille
Subject Re: 7.1->7.2 data import timestamp problems
Date
Msg-id 200202232014.g1NKEuk43959@lists.unixathome.org
Whole thread Raw
In response to Re: 7.1->7.2 data import timestamp problems  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: 7.1->7.2 data import timestamp problems
List 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 by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: 7.1->7.2 data import timestamp problems
Next
From: Sean Chittenden
Date:
Subject: Re: 7.1->7.2 data import timestamp problems