Calling V1 function from within the server - Mailing list pgsql-general

From Don Y
Subject Calling V1 function from within the server
Date
Msg-id 4457A3E2.5050602@DakotaCom.Net
Whole thread Raw
Responses Re: Calling V1 function from within the server
List 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 by date:

Previous
From: "Matthew T. O'Connor"
Date:
Subject: 8.1.4 anytime soon?
Next
From: "Christo Romberg"
Date:
Subject: FATAL: database "dspace" does not exist"