RE: 'record old is unassigned yet' when using trigger in 7.1.1 - Mailing list pgsql-sql

From Michael Davis
Subject RE: 'record old is unassigned yet' when using trigger in 7.1.1
Date
Msg-id 01C0D8A0.ED65E9A0.mdavis@sevainc.com
Whole thread Raw
In response to 'record old is unassigned yet' when using trigger in 7.1.1  (Joseph Shraibman <jks@selectacast.net>)
List pgsql-sql
When creating the trigger you need to specify BEFORE UPDATE rather than BEFORE INSERT.

-----Original Message-----
From:    Joseph Shraibman [SMTP:jks@selectacast.net]
Sent:    Wednesday, May 09, 2001 2:56 PM
To:    pgsql-sql@postgresql.org
Subject:    'record old is unassigned yet' when using trigger in 7.1.1

I have a function used in a trigger that looks like this:
      begin      IF OLD.status <> NEW.status     THEN    NEW.statchangedate = CURRENT_DATE;     END IF;return NEW;end;

The problem is when a new row is inserted I get this error message:
ERROR:  record old is unassigned yet
... and the insert fails.

It doesn't matter if the trigger is before or after.

-- 
Joseph Shraibman
jks@selectacast.net
Increase signal to noise ratio.  http://www.targabot.com

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command   (send "unregister YourEmailAddressHere" to
majordomo@postgresql.org)



pgsql-sql by date:

Previous
From: "Joe Conway"
Date:
Subject: Re: 'record old is unassigned yet' when using trigger in 7.1.1
Next
From: Joseph Shraibman
Date:
Subject: Re: 'record old is unassigned yet' when using trigger in 7.1.1