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



---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
     subscribe-nomail command to [EMAIL PROTECTED] so that your
     message can get through to the mailing list cleanly

Reply via email to