Обсуждение: How to detect NULL in VarChar (C function)

Поиск
Список
Период
Сортировка

How to detect NULL in VarChar (C function)

От
Benno Pütz
Дата:
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.

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.

Any help will be appreciated
   Benno



Re: How to detect NULL in VarChar (C function)

От
Michael Fuhr
Дата:
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/


Re: How to detect NULL in VarChar (C function)

От
Tom Lane
Дата:
Benno Pütz <puetz@mpipsykl.mpg.de> writes:
> 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.

Use PG_ARGISNULL().  See
33.7.4. Calling Conventions Version 1 for C-Language Functions
at
http://www.postgresql.org/docs/7.4/static/xfunc-c.html
        regards, tom lane