fmgr_info: function 7390843: cache lookup failed

From: culley harrelson <culley(at)fastmail(dot)fm>
To: pgsql-general(at)postgresql(dot)org
Subject: fmgr_info: function 7390843: cache lookup failed
Date: 2003-12-02 00:02:47
Message-ID: bqgkus$u7b$1@sea.gmane.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I am getting this error:

fmgr_info: function 7390843: cache lookup failed

when trying to insert some data into a table using the tsearch2 contrib
module (this is postgresql 7.3). I have the following trigger defined:

BEGIN
NEW.search_vector :=
setweight(to_tsvector(coalesce(NEW.display_text, '')), 'A') ||
to_tsvector(coalesce(NEW.content_desc, ''));
RETURN NEW;
END;

Which I suspect is causing the problem. Where can I look up that
function number to verify this? Any suggestions?

culley

Browse pgsql-general by date

  From Date Subject
Next Message Toby Doig 2003-12-02 00:09:17 Hostname of server
Previous Message Rick Gigger 2003-12-02 00:02:32 Re: Triggers, Stored Procedures, PHP. was: Re: PostgreSQL Advocacy, Thoughts and Comments