Re: [SQL] Create Rule problems

From: jwieck(at)debis(dot)com (Jan Wieck)
To: postgres(at)mindspring(dot)com (Doug Younger)
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Create Rule problems
Date: 1999-05-17 09:56:24
Message-ID: m10jK8G-000EBZC@orion.SAPserv.Hamburg.dsh.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
> Hello,
> I'm trying to set up some rules and was following the examples in the
> Programmer's guide form the docs, and it gives an example similar to this:
>
> CREATE RULE log_shoelace AS ON UPDATE TO shoelace_data
> WHERE NEW.sl_avail != OLD.sl_avail
> DO INSERT INTO shoelace_log VALUES (
> NEW.sl_name,
> NEW.sl_avail,
> getpgusername().
> 'now'::text
> );
>
> What I want to do is very similar:
>
> CREATE RULE update_login AS ON UPDATE TO user_info
> WHERE NEW.login != OLD.login
> DO UPDATE user_dept SET login = NEW.login
> WHERE login = OLD.login;
>
> I get an error:
> "ERROR: Table old does not exist."
> What's going on?

Which PostgreSQL release? I've just checked it with the
current v6.5 tree and I'm sure it worked too with the v6.4.2
released.

>
> Also, the docs say you can do multiple actions in a rule... what is the syntax?
> I tried putting the actions in parens separated by semicolons or commas wit
> no luck...
> There wasn't an example in the docs that did more than on action.

Current v6.5 tree can handle it. You have to put parens arond
the actions and separate them with semicolon:

CREATE TABLE t1 (a int4, b text);
CREATE TABLE t2 (a int4, b text);
CREATE TABLE t3 (a int4, b text);

CREATE RULE r1 AS ON UPDATE TO t1 WHERE NEW.b != OLD.b DO (
UPDATE t2 SET b = NEW.b WHERE t2.a = OLD.a;
UPDATE t3 SET b = NEW.b WHERE t3.a = OLD.a;
);

This works for me.

Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#======================================== jwieck(at)debis(dot)com (Jan Wieck) #

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Israel Zavalza Bahena 1999-05-17 11:00:03 Encriptacion en Bases de Datos
Previous Message Hiroshi Inoue 1999-05-17 07:40:56 RE: [HACKERS] DROP TABLE does not drop a table completely