From: | Martijn van Oosterhout <kleptog(at)svana(dot)org> |
---|---|
To: | laser <laserlist(at)pgsqldb(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: is it a bug in rule system? |
Date: | 2008-05-28 11:14:19 |
Message-ID: | 20080528111419.GA2613@svana.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Wed, May 28, 2008 at 04:59:33PM +0800, laser wrote:
> >Yes, use a TRIGGER instead a RULE for such tasks.
>
> thanks, good to know it's a bug and we'll try TRIGGER approach.
It's not a bug, just your misunderstanding of how rules work. Rules
rewrite queries. What happen in your case is because of the condition
your query will be split into two: once with your INSERT with a NOT
EXISTS (subquery) and once as an UPDATE with the condition EXISTS
(subquery).
So the first query will insert with id=1 and then the update sees this
row and updates it to 2.
What this says is that rules are the wrong tool for what you're trying
to do. Conditional rules are powerful but not appropriate here.
Have a nice day,
--
Martijn van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
> Please line up in a tree and maintain the heap invariant while
> boarding. Thank you for flying nlogn airlines.
From | Date | Subject | |
---|---|---|---|
Next Message | Francisco Reyes | 2008-05-28 14:53:27 | Re: Psql crashes with Segmentation fault on copy from |
Previous Message | laser | 2008-05-28 08:59:33 | Re: is it a bug in rule system? |