Re: trigger error

From: "Mendola Gaetano" <mendola(at)bigfoot(dot)com>
To: "Yudie" <yudie(at)axiontech(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: trigger error
Date: 2003-06-10 16:27:48
Message-ID: 012f01c32f6d$3b9495c0$152aa8c0@GMENDOLA2
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

"Yudie" <yudie(at)axiontech(dot)com> wrote:
> Hi,
> I',m trying to create trigger with plpgsql trigger function
> then I got this error message when trigger executed:

> Number: -2147467259
> Error while executing th query;
> ERROR: fmgr_info: function 1546856080: cache lookup failed

> Here is the function code:

>CREATE FUNCTION TRIGGER_UPDATE_AXPRDT_STATUS()
>RETURNS OPAQUE
>[snipped]
>LANGUAGE 'plpgsql';

>CREATE TRIGGER TRIGGER_AXPRDT_FUTURESTATUS
>BEFORE UPDATE ON AXPRDT
>FOR EACH ROW
>EXECUTE PROCEDURE TRIGGER_UPDATE_AXPRDT_STATUS();

The errors mean that after the trigger definition you maded a
modification on the function rebuilding it. Try to delete the trigger and
define it again.

The fact that you are using "RETURN OPAQUE" instead of
"RETURN TRIGGER" means that you are using a Postgres
version prior then 7.3.x.
Using the version 7.3.x ( I suggest you the 7.3.3 ) you can
define that funcion: "CREATE OR REPLACE .... " so you are
not forced to delete it before and your problem should gone.

Gaetano

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Forest Wilkinson 2003-06-10 17:45:36 Re: how to determine array size
Previous Message Yudie 2003-06-10 16:04:05 trigger error