I am implementing a simple replication form of two tables or more. I have the replication table that has the name of the table to be replicated and id.
To feed the replication table I have a trigger on each table that will be replicated by taking the information from them and inserting it into the replication table .
I know that in my function I can use OLD and NEW to get the fields from the table that triggered the trigger, however I wanted to, inside the function trigger the name of the table that triggered the event.
Is this possible?