Tom Lane schrieb:
> Torsten Zühlsdorff <foo@meisterderspiele.de> writes:
>> NEW.revision := addContentRevision (OLD.content_id, OLD.revision);
>
>> /* not working line, just a stub:
>> EXECUTE 'INSERT INTO ' || TG_TABLE_NAME || ' SELECT $1 ' USING NEW;
>> */
>
>> RETURN NULL;
>
> This seems like the hard way. Why don't you just RETURN NEW and let the
> normal insertion happen?
The trigger catches an UPDATE, not an INSERT. I need the old and the new
row, because this should emulate revision-control of the content.
Greetings,
Torsten