Re: [SQL] rewriting values with before trigger

From: "Matthew Nuzum" <cobalt(at)bearfruit(dot)org>
To: "'Robert Treat'" <xzilla(at)users(dot)sourceforge(dot)net>
Cc: "'Josh Berkus'" <josh(at)agliodbs(dot)com>, <pgsql-general(at)postgresql(dot)org>, <gearond(at)cvc(dot)net>
Subject: Re: [SQL] rewriting values with before trigger
Date: 2003-04-24 21:31:33
Message-ID: 006e01c30aa8$e1183770$6900a8c0@mattspc
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

I'm by no means an expert in this, but maybe this idea would work in your
rule?

Write a function that takes text as it's input and returns either a
timestamp or NULL and then do something like:
return_timestamp(mydate::text)

This way, a valid date will be converted to it's text equiv. You can then
use the function to look for '' and if true, return NULL and if false cast
the text string back into a timestamp or whatever and return it.

Of course, I don't know if a function that is set to return a timestamp can
even return NULL. That might cause an error by itself.

--
Matthew Nuzum
www.bearfruit.org
cobalt(at)bearfruit(dot)org

> -----Original Message-----
> From: pgsql-sql-owner(at)postgresql(dot)org [mailto:pgsql-sql-
> owner(at)postgresql(dot)org] On Behalf Of Robert Treat
> Sent: Thursday, April 24, 2003 3:49 PM
> To: gearond(at)cvc(dot)net
> Cc: Josh Berkus; pgsql-general(at)postgresql(dot)org; pgsql-sql(at)postgresql(dot)org
> Subject: Re: [GENERAL] [SQL] rewriting values with before trigger
>
> On Thu, 2003-04-24 at 15:35, Dennis Gearon wrote:
> > Well,
> > does ''::INT do anything valuable?
>
> not in 7.3+, and given my original problem involves timestamps, not
> in
> 7.2 either.
>
> > change column to a string, convert to INTS on the way out, STRINGS
> on the way in?
> > use an external language to make transitions.
> >
>
> yeah, I've thought of some other crazy ways to get around this, but the
> problem is due to a bug in the application side. I was hoping I could
> write a quick hack (like adding a rule/trigger) to get around this until
> the app was fixed, but I'm not going to make my side a kludge when it
> isn't one now.
>
>
> Robert Treat
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2003-04-24 21:47:04 Re: Factoring where clauses through UNIONS take 2
Previous Message nolan 2003-04-24 21:18:05 Re: [SQL] rewriting values with before trigger

Browse pgsql-sql by date

  From Date Subject
Next Message Nigel J. Andrews 2003-04-24 21:53:14 Re: [SQL] rewriting values with before trigger
Previous Message nolan 2003-04-24 21:18:05 Re: [SQL] rewriting values with before trigger