Tom Lane <[EMAIL PROTECTED]> writes:

> Louis-David Mitterrand <[EMAIL PROTECTED]> writes:
> > Is there a way to know which columns are being UPDATEd or INSERTEd from
> > inside a trigger, either in C or pl/pgsql?
> 
> Huh?  An INSERT always inserts all columns, by definition.  Some of them
> might be null and/or equal to their default values, but they're all
> there.
> 
> For an UPDATE, you could check to see whether old.col = new.col.
> This would miss the case where an UPDATE command is explicitly setting
> a column to the same value it already had; dunno if you care or not.

Another way, is to have an extra boolean column called "updated", or
something like that. When you do the UPDATE, you make sure that always
updates the row with a 't' in that column. Then you do whatever you
need to do with the newly updated rows, and when done, you run another
UPDATE to set all rows to 'f' in the "updated" column.

Takes two updates, but might sometimes be easier than comparing the
rows to see if they've changed.


Tomas

Reply via email to