trigger/rule question - Mailing list pgsql-sql

From Enrico Weigelt
Subject trigger/rule question
Date
Msg-id 20050427165624.GA4253@nibiru.borg.metux.de
Whole thread Raw
List pgsql-sql
Hi folks,


for database synchronization I'm maintaining an mtime field in 
each record and I'd like to get it updated automatically on 
normal writes (insert seems trivial, but update not), but it 
must remain untouched when data is coming in from another node
(to prevent sync loops).

I first tried it with rules on update, but I didnt find any trick
to prevent infinite recoursion. If I'd replace update by delete 
and reinsert, I'll probably run into trouble with constaints and
delete rules.

Triggers dont seem to have this problem, but require an function
call per record, while a rule solution would only rewrite the 
actual query.

But still I've got the unsolved problem, how to decide when to
touch the mtime and when to pass it untouched. I didnt find any
trick to explicitly bypass specific triggers yet.


Any ideas ?


thx
-- 
---------------------------------------------------------------------Enrico Weigelt    ==   metux IT service phone:
+4936207 519931         www:       http://www.metux.de/ fax:       +49 36207 519932         email:
contact@metux.de
--------------------------------------------------------------------- Realtime Forex/Stock Exchange trading powered by
postgresSQL:))                                           http://www.fxignal.net/
 
---------------------------------------------------------------------


pgsql-sql by date:

Previous
From: "Greg Sabino Mullane"
Date:
Subject: Re: UPDATE WITH ORDER BY
Next
From: Rodrigo Carvalhaes
Date:
Subject: SYNTAX ERROR ON FOR... LOOP