Re: DO INSTEAD in rule

From: Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp>
To: tgl(at)sss(dot)pgh(dot)pa(dot)us
Cc: pgsql-sql(at)postgresql(dot)org, JanWieck(at)Yahoo(dot)com
Subject: Re: DO INSTEAD in rule
Date: 2004-01-04 23:39:51
Message-ID: 20040105.083951.78727440.t-ishii@sra.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

> Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp> writes:
> > In the last SELECT I exepcted j = 0, rather than j = 1 since I use DO
> > INSTEAD in the rule and the default value for j is 0. Am I missing
> > something?
>
> > CREATE rule t1_ins AS ON INSERT TO t1
> > WHERE (EXISTS (SELECT 1 FROM t1
> > WHERE i = new.i))
> > DO INSTEAD UPDATE t1 SET j = j + 1
> > WHERE i = new.i;
>
> Hm. The problem is that the rule query runs after the INSERT and so it
> sees the inserted row as something to update. The logic is essentially
>
> if (not (EXISTS ...)) then do the INSERT;
> if (EXISTS ...) then do the UPDATE;
>
> and the second command sees the inserted row as existing, so it updates
> it.

Oh I see. I think I can live with it. However I guess documentations
should be clearner about this...

> Consider using a trigger instead of a rule to do this. Or, accept
> that the UPDATE will happen unconditionally, and start J off one less
> than it should be.
>
> Note that either solution will have race conditions if multiple
> processes try to insert the same row at the same time. There are
> discussions in the archives about how to avoid that, but I'm not
> sure anyone found a really satisfactory answer that didn't involve
> an unpleasant amount of locking.

Now I remember the discussion. Probably I should not use rules like my
examples for real world applications.
--
Tatsuo Ishii

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Iain 2004-01-05 01:40:13 Re: not in vs not exists - vastly diferent performance
Previous Message Chris Gamache 2004-01-04 18:54:44 Historic Query using a view/function ?