Re: Date of creation and of change - Mailing list pgsql-sql

From Andreas Tille
Subject Re: Date of creation and of change
Date
Msg-id Pine.LNX.4.21.0008251303310.4746-100000@wr-linux02.rki.de
Whole thread Raw
In response to Re: Re: Date of creation and of change  (hlefebvre <hlefebvre@lexbase.net>)
List pgsql-sql
On Wed, 23 Aug 2000, hlefebvre wrote:

> Yes. The keywords NEW / OLD are available only in triggers
> see
> http://www.postgresql.org/users-lounge/docs/7.0/user/c40874113.htm#AEN4286
Well, I believe that, but


CREATE FUNCTION changed_at_timestamp() RETURNS OPAQUE AS '   BEGIN       ChangedAt := timestamp(''now'');       RETURN
NEW;  END;
 
' LANGUAGE 'plpgsql';

CREATE TABLE WebSeite (IdWebSeite int4 DEFAULT nextval('seqwebseite'::text) NOT NULL,CreatedAt timestamp DEFAULT
now(),changedattimestamp DEFAULT now(),       ...
 
);

CREATE TABLE Menu (IdMenu int4 DEFAULT nextval('seqmenu'::text) NOT NULL,CreatedAt timestamp DEFAULT now(),ChangedAt
timestampDEFAULT now(),       ...
 
);

CREATE TABLE MenuItem (IdMenu int4 DEFAULT nextval('seqmenu'::text) NOT NULL,CreatedAt timestamp DEFAULT
now(),ChangedAttimestamp DEFAULT now(),       ...
 
);

CREATE TRIGGER webseite_changed_at_timestamp BEFORE INSERT OR UPDATE ON WebSeite   FOR EACH ROW EXECUTE PROCEDURE
changed_at_timestamp();
CREATE TRIGGER menu_changed_at_timestamp BEFORE INSERT OR UPDATE ON Menu   FOR EACH ROW EXECUTE PROCEDURE
changed_at_timestamp();
CREATE TRIGGER menuitem_changed_at_timestamp BEFORE INSERT OR UPDATE ON MenuItem   FOR EACH ROW EXECUTE PROCEDURE
changed_at_timestamp();



web=# insert into menu (IdMenu, ...) values (3, ... );
ERROR:  parser: parse error at or near "changedat"


What's the problem here.  Is there a conflict between the definition with
DEFAULT now() and the TRIGGER BEFORE INSERT OR UPDATE.  Should perhaps
be the DEFAULT in the definition be removed or just the INSERT in
the TRIGGER?  Or is there a completely different problem?

Kind regards
        Andreas.



pgsql-sql by date:

Previous
From: Andreas Tille
Date:
Subject: RE: Create table in functions
Next
From: hlefebvre
Date:
Subject: Re: Re: Date of creation and of change