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

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: How to detect NULL in VarChar (C function)
Дата
Msg-id 20050113195031.GA40861@winnie.fuhr.org
обсуждение исходный текст
Ответ на How to detect NULL in VarChar (C function)  (Benno Pütz <puetz@mpipsykl.mpg.de>)
Список 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 по дате отправления:

Предыдущее
От: Benno Pütz
Дата:
Сообщение: How to detect NULL in VarChar (C function)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: How to detect NULL in VarChar (C function)