Re: Cache look up failure - Mailing list pgsql-sql

From Joel Burton
Subject Re: Cache look up failure
Date
Msg-id 3A25540D.21187.68901719@localhost
Whole thread Raw
In response to Cache look up failure  (Najm Hashmi <najm@mondo-live.com>)
List pgsql-sql

On 29 Nov 2000, at 17:56, Najm Hashmi wrote:

> Hi All, I am trying to insert  a tuple in the tuple, and i am getting
> the follwoing error message:
> 
> fliprdb=# insert into collection(name, artist_id) values('El Baile
> Aleman',2); ERROR:  fmgr_info: function 24011: cache lookup failed
> 
> Can someone help me out here. Thnaks in advance  for your help.
> Najm

Normally, the cache lookup error means you've done something like:

create table
create view on table
drop table
re-create table (perhaps slightly different)
select * from view

since the view calls the table by oid, not by name, it can't find the 
original table it uses.

for you, it sounds like

create function
create table-that-uses-function-somehow
drop function
re-create function
insert into table

Are there triggers on your table? Or rules? (Both of these might 
refer to functions that might have been changed.) Or, perhaps you 
have constraints on your table that call a function that you've re-
created.

If you have a backup of your database (ie pg_dumpall), you can 
grep this file for 24011. This should be the original oid of the 
function that is lost.

Good luck!

--
Joel Burton, Director of Information Systems -*- jburton@scw.org
Support Center of Washington (www.scw.org)


pgsql-sql by date:

Previous
From: "Joel Burton"
Date:
Subject: Rules with Conditions: Bug, or Misunderstanding
Next
From: Stephan Szabo
Date:
Subject: Re: Cache lookup failure