Re: BUG #1533: "*OLD*" relation not recognized in CREATE RULE

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Henk van den Toorn" <vdtoorn(at)hotmail(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #1533: "*OLD*" relation not recognized in CREATE RULE
Date: 2005-03-14 05:53:16
Message-ID: 5251.1110779596@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

"Henk van den Toorn" <vdtoorn(at)hotmail(dot)com> writes:
> CREATE RULE rulename AS ON UPDATE
> table WHERE OLD.index = NEW.index
> DO INSTEAD NOTHING;

> Postgresql responds with

> ERROR: relation "*OLD*" does not exist

Hm, works for me:

regression=# create table tab1 (index serial primary key, data text);
NOTICE: CREATE TABLE will create implicit sequence "tab1_index_seq" for "serial" column "tab1.index"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "tab1_pkey" for table "tab1"
CREATE TABLE
regression=# create rule r as on update to tab1 where old.index = new.index do instead nothing;
CREATE RULE
regression=# select version();
version
---------------------------------------------------------------
PostgreSQL 7.4.7 on hppa-hp-hpux10.20, compiled by GCC 2.95.3
(1 row)

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2005-03-14 05:59:51 Re: BUG #1530: search on uuid indexed article returns no resultat
Previous Message Greg Stark 2005-03-14 05:35:32 Re: [BUGS] We are not following the spec for HAVING without GROUP