Re: Is there a way to test for UNASSIGNED in pl/pgsql

From: Hannu Krosing <hannu(at)2ndQuadrant(dot)com>
To: Merlin Moncure <mmoncure(at)gmail(dot)com>
Cc: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>, Hannu Krosing <hannu(at)2ndquadrant(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Is there a way to test for UNASSIGNED in pl/pgsql
Date: 2012-10-29 16:46:12
Message-ID: 508EB2D4.80700@2ndQuadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 10/29/2012 05:36 PM, Merlin Moncure wrote:
> On Mon, Oct 29, 2012 at 11:26 AM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
>> Hello
>>
>>
>> 2012/10/29 Hannu Krosing <hannu(at)2ndquadrant(dot)com>:
>>> Hi
>>>
>>> Is there a way to test for a variable being unassigned in pl/pgsql ?
>>>
>>> I'm writing an audit trigger where I'd like to save full before and
>>> after images into audit log and I really do not like to do
>>>
>>> IF TG_OP IN ('INSERT', 'UPDATE') ...
>>>
>>> I'd like rather better if i could just write
>>>
>>> IF NEW IS ASSIGNED THEN ...
>>>
>>> or even use it straight
>>>
>>> null_if_unnasigned(NEW)
>>>
>>> overriding
>>>
>>> coalesce(NEW, NULL)
>>>
>>> for the same purpose would also be ok
>>>
>> I don't know about any way, how to do it. It is little bit hard,
>> because it means test of state plpgsql variable (and plpgsql property)
>> from SQL expression, and it is not possible from SQL.
>>
>> we can design some new variant of IF statement, where parameter is
>> test of validity some variable instead SQL expression
>>
>> some like
>>
>> IF DEFINED NEW THEN ...
> how is that different from SQL coalesce()?
It seems that the "variable is unassigned" comes before SQL has a chance
to see it.

Would just converting UNDEFINED to NULL be a very bad idea ?

It happens so in many places in SQL queries?

And then in some this NULL is coverted to FALSE :)

--------------------------
Hannu

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2012-10-29 16:57:26 Re: Is there a way to test for UNASSIGNED in pl/pgsql
Previous Message Merlin Moncure 2012-10-29 16:36:09 Re: Is there a way to test for UNASSIGNED in pl/pgsql