how to tell if a tuple has been inserted in current transaction - Mailing list pgsql-novice

From pg noob
Subject how to tell if a tuple has been inserted in current transaction
Date
Msg-id CAPNY-2UFrBbeN9A_5Siwcu-QhHv_R5kkJMii4GcdPzu8JGoR9Q@mail.gmail.com
Whole thread Raw
Responses Re: how to tell if a tuple has been inserted in current transaction
List pgsql-novice

Hi all,

I have a trigger function which is getting invoked on insert/update and within that trigger I would like to know if some tuple, from a different table referenced by foreign key constraint from the table with the trigger on it, was inserted within the same transaction as the insert/update that caused the trigger to fire.

I found that I can tell if the foreign tuple was inserted or updated by checking if its xmin == select txid_current(), but there doesn't appear to be any way to know if it was modified because of an INSERT or an UPDATE.  I would like to distinguish between whether it was an insert or update that caused the row to be modified.  Is this possible?

Thank you for any information.

pgsql-novice by date:

Previous
From: "Oliveiros d'Azevedo Cristina"
Date:
Subject: Re: JOIN producing duplicate results
Next
From: Merlin Moncure
Date:
Subject: Re: how to tell if a tuple has been inserted in current transaction