Re: How to detect NULL in VarChar (C function) - Mailing list pgsql-interfaces

From Michael Fuhr
Subject Re: How to detect NULL in VarChar (C function)
Date
Msg-id 20050113195031.GA40861@winnie.fuhr.org
Whole thread Raw
In response to How to detect NULL in VarChar (C function)  (Benno Pütz <puetz@mpipsykl.mpg.de>)
List pgsql-interfaces
On Thu, Jan 13, 2005 at 05:53:40PM +0100, Benno Pütz wrote:

> I try to write a function that combines two varchar columns.
> 
> Now the problem arose that (either) one of te columns may contain a NULL 
> value, in which case the return value seems to become NULL.

What do you mean "seems" to become NULL?  Is it NULL or not?  You
can check with IS NULL:

SELECT foo(value1, value2) IS NULL;

> I have not been able to find a description of how to detect NULL values 
> in VarChar variables passed to C-functions to catch those cases.

If you're using the version-1 calling conventions then you can use
PG_ARGISNULL(); this macro is mentioned in the "C-Language Functions"
section of the "Extending SQL" chapter in the documentation.

If you created the function as STRICT (aka RETURNS NULL ON NULL
INPUT) and any of the arguments are NULL, then the function won't
be called at all and the return value will be NULL.  If you want
to handle NULL values within the function then don't declare it
STRICT.

-- 
Michael Fuhr
http://www.fuhr.org/~mfuhr/


pgsql-interfaces by date:

Previous
From: Benno Pütz
Date:
Subject: How to detect NULL in VarChar (C function)
Next
From: Tom Lane
Date:
Subject: Re: How to detect NULL in VarChar (C function)