Re: declare column update expression

From: "Chris Velevitch" <chris(dot)velevitch(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: declare column update expression
Date: 2008-09-12 03:10:41
Message-ID: b0a3bf780809112010nf8f3ce6x16aa5b756bd2c1fa@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, Sep 12, 2008 at 1:53 AM, Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com> wrote:
> Here's a simple example of last modified trigger using plpgsql from way back:
>
> -- FUNCTION --
>
> CREATE FUNCTION modtime () RETURNS opaque AS '
> BEGIN
> new.lm :=''now'';
> RETURN new;
> END;
> ' LANGUAGE 'plpgsql';

This does work in 7.4. It doesn't like 'opaque', whatever that is. It
doesn't like language plpgsql. I'm using a shared hosted database, so
I'm probably not allowed to createlang. And it complains about 'new'.

Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jignesh K. Shah 2008-09-12 03:30:39 Re: PostgreSQL TPC-H test result?
Previous Message Chris Velevitch 2008-09-12 03:06:22 Re: declare column update expression