Re: error when creating rule

From: Barbara Lindsey <blindsey(at)cog(dot)ufl(dot)edu>
To: <sszabo(at)megazone(dot)bigpanda(dot)com>
Cc: <blindsey(at)cog(dot)ufl(dot)edu>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: error when creating rule
Date: 2003-11-07 16:02:54
Message-ID: 2487.66.157.145.167.1068220974.squirrel@webmail.cog.ufl.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Running with version 7.2.1

>
> On Fri, 7 Nov 2003, Barbara Lindsey wrote:
>
>> I see what you mean - yes - corrections to post below:
>>
>> > On Fri, 7 Nov 2003, Barbara Lindsey wrote:
>> >
>> >> CREATE SEQUENCE "prod_id_seq" cache 1;
>> >> CREATE TABLE "prod_data" (
>> >> "prod_id" integer DEFAULT nextval('prod_id_seq') PRIMARY
>> KEY,
>> >> "client_id" integer NOT NULL,
>> >> "cat_id" integer NOT NULL,
>> >> "status_id" integer NOT NULL,
>> >> "modified" timestamp with time zone DEFAULT
>> >> current_timestamp, "modified_by" varchar(50) DEFAULT
>> >> current_user,
>> >> CONSTRAINT prod_clnt_fk FOREIGN KEY (client_id)
>> >> REFERENCES ref_clients(client_id)
>> >> ON DELETE CASCADE ON UPDATE CASCADE,
>> >> CONSTRAINT prod_cat_fk FOREIGN KEY (cat_id)
>> >> REFERENCES ref_category(cat_id)
>> >> ON DELETE CASCADE ON UPDATE CASCADE,
>> >> CONSTRAINT prod_stat_fk FOREIGN KEY (status_id)
>> >> REFERENCES ref_status(status_id)
>> >> ON DELETE CASCADE ON UPDATE CASCADE
>> >> );
>> >>
>> >> TABLE prod_data_bak looks just like prod_data but with all
>> constraints removed.
>> >>
>> >>
>> >> Here is where the problem begins. When I try to create this rule:
>> >>
>> >> CREATE RULE log_prod_upd AS ON UPDATE TO prod_data
>> >> where NEW.prod_id = OLD.prod_id
>> >> DO INSERT INTO prod_data_bak VALUES (
>> >> OLD.prod_id,OLD.client_id,
>> >> OLD.cat_id, OLD.status_id,
>> >> OLD.modified,OLD.modified_by
>> >> );
>> >
>> > Was this intended to go to prod_data_bak as opposed to job_data_bak?
>
> What version are you running?
>
> I had to drop the extra references constraints to other tables that
> weren't given, but had no problems with the creation on the rule once I
> did so, given creating a prod_data_bak that didn't have any of the
> references constraints (or the primary key) and it seemed to work for me
> (using my 7.3.4 system)

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2003-11-07 16:05:23 Re: int8 primary keys still not using index without manual
Previous Message Stephan Szabo 2003-11-07 15:57:02 Re: error when creating rule