help me, please - Mailing list pgsql-bugs

From Vinicio Llumiquinga
Subject help me, please
Date
Msg-id 3AF99442.3AC5E85F@alainet.org
Whole thread Raw
Responses Re: help me, please  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
I have a problem
I have a function in plpgsql:

create function add_one (integer) returns integer as '
begin
    return $1+1;
end;
' language 'plpgsql';

When I create in psql monitor this function the message is CREATED
Then I write:
select add_one(1);
and always say:

fmgr_info: function 18816: cache lookup failed

This happend when I write any function.
How Can I resolve this problem?

pgsql-bugs by date:

Previous
From: Amit
Date:
Subject: Problem in Porting from Oracle to Postgres
Next
From: Albert
Date:
Subject: Bug in plpgsql with execute ...