Calling V1 function from within the server

Поиск
Список
Период
Сортировка
От Don Y
Тема Calling V1 function from within the server
Дата
Msg-id 4457A3E2.5050602@DakotaCom.Net
обсуждение исходный текст
Ответы Re: Calling V1 function from within the server  (Martijn van Oosterhout <kleptog@svana.org>)
Список pgsql-general
Hi,

If I define:

Datum barcode_checksum(PG_FUNCTION_ARGS)

PG_FUNCTION_INFO_V1(barcode_checksum)

Datum barcode_checksum(PG_FUNCTION_ARGS)
{
   barcode value;
   short result;

   label = (barcode) PG_GETARG_INT32(0);

   // compute barcode

   PG_RETURN_INT16(result);
}

and now want to *use* that function within some other
(related) function, how can I invoke it?  The intuitive
syntax:
   short foo;
   barcode label;
   foo = barcode_checksum(label);
gives compiler warnings (pointer from int without cast)
as well as SIGSEGV's at run time.

The model used for the complex sample data type avoids this
issue by creating an "internal" function that is used by
other functions -- and *wrapped* in the PG_FUNCTION_INFO_V1
framework under another name (i.e. that name is never used
directly in the rest of the code)

--don

В списке pgsql-general по дате отправления:

Предыдущее
От: "Matthew T. O'Connor"
Дата:
Сообщение: 8.1.4 anytime soon?
Следующее
От: "Christo Romberg"
Дата:
Сообщение: FATAL: database "dspace" does not exist"