Re: Please help cache lookup failed - Mailing list pgsql-hackers

From Peter Vazsonyi
Subject Re: Please help cache lookup failed
Date
Msg-id Pine.LNX.4.10.10006272324550.5126-100000@kredit.sth.szif.hu
Whole thread Raw
In response to Please help cache lookup failed  (Michael Fraley <fraley@usfca.edu>)
List pgsql-hackers

This works, but you may create the function first...
And then the trigger...

On Tue, 27 Jun 2000, Michael Fraley wrote:

> ERROR:  fmgr_info: function 19104: cache lookup failed

> create subscriptions table
> -------------------
> CREATE SEQUENCE "subscriptions_script_id_seq" start 1 increment 1 maxvalue 
>                 2147483647 minvalue 1  cache 1 ;
> CREATE TABLE "subscriptions" (
>     "script_id" int4 DEFAULT nextval('subscriptions_script_id_seq') NOT NULL,
>     "mag_id" int4 NOT NULL,
>     "paid_amount" money NOT NULL,
>     "start_date" date NOT NULL,
>     "end_date" date NOT NULL,
>     "notes" text);
> CREATE UNIQUE INDEX "subscriptions_script_id_key" on "subscriptions" using btree 
>                ( "script_id" "int4_ops" );
> CREATE TRIGGER "sub_mag_trigger" BEFORE INSERT OR UPDATE ON "subscriptions" 
>               FOR EACH ROW EXECUTE PROCEDURE 
>               check_primary_key ('mag_id', 'magazines', 'mag_id');
> 
> create function
> ------------
> CREATE FUNCTION "check_primary_key" ( ) RETURNS opaque AS
>               '/usr/local/pgsql/lib/modules/refint.so' LANGUAGE 'C';
> 
> 
>  -- 
> 
>   Michael Fraley
>   fraley@usfca.edu
>   http://www.usfca.edu/~fraley
> 





pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Big 7.1 open items
Next
From: Tom Lane
Date:
Subject: Re: Fwd: Re: Fwd: Problem with recv syscall on socket when other side closed connection