cache lookup failed

From: victor <victor(at)work(dot)ro>
To: pgsql-sql(at)postgresql(dot)org
Subject: cache lookup failed
Date: 2001-09-12 14:05:09
Message-ID: 200109121405.f8CE5e786735@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi,
I have this function:

CREATE FUNCTION add_one (integer) RETURNS integer AS '
BEGIN
RETURN $1 + 1;
END;
' LANGUAGE 'plpgsql';

from postgres doc.
When I try somethin like this:

SELECT add_one(4);

I get :

ERROR: fmgr_info: function 20086: cache lookup failed

please tell me what it's rong.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Peter Eisentraut 2001-09-12 15:00:06 Re: cache lookup failed
Previous Message Yoann 2001-09-12 13:47:01 Re: How do I extract ONE particular field, when multiple table contain the same field name?