Re: [HACKERS] Referencing OLD/NEW Rows on Trigger Definition

2004-08-19 Thread Henry
> Seems to me you are hacking on way more than you want to. Take another > look at your design and see if there isn't a smaller design struggling > to get out. In particular, why are you touching any of the executor > (which hardly deals in column names at all) rather than implementing the > alia

Re: [HACKERS] Referencing OLD/NEW Rows on Trigger Definition

2004-08-13 Thread Tom Lane
[EMAIL PROTECTED] (Henry) writes: > As part of the project, we need to implement a new feature for the > trigger creation in > PostgreSQL, which defines aliases for the "old" and "new" data by > adding > the REFERENCING clause to the CREATE TRIGGER statement. Based on my > research, the following

[HACKERS] Referencing OLD/NEW Rows on Trigger Definition

2004-08-13 Thread Henry
I am currently working on a research project at University of Ottawa. As part of the project, we need to implement a new feature for the trigger creation in PostgreSQL, which defines aliases for the "old" and "new" data by adding the REFERENCING clause to the CREATE TRIGGER statement. Based on my