From: | "I(dot) B(dot)" <i(dot)bre(at)live(dot)com> |
---|---|
To: | <pgsql-general(at)postgresql(dot)org> |
Subject: | Returning a char from a C-language function |
Date: | 2010-04-21 17:42:09 |
Message-ID: | SNT128-W33B94FDE26F417A315AA2991090@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
I have a small problem when trying to make a C-language function to return one character. The code is very simple and that's what's making it so strange.
Datum val_ibool(PG_FUNCTION_ARGS)
{
iBool *input = (iBool *) PG_GETARG_POINTER(0);
PG_RETURN_CHAR(input->value);
}
input is a structure containing a character as value. I also tried this, but it didn't work:
Datum val_ibool(PG_FUNCTION_ARGS)
{
char test = 'a';
PG_RETURN_CHAR(test);
}
On the other side I have this:
CREATE FUNCTION val(ibool)
RETURNS char
AS '/home/ivan/Desktop/diplomski/trunk/C/modbms', 'val_ibool'
LANGUAGE C STRICT;
Any advice?
_________________________________________________________________
Hotmail: Trusted email with powerful SPAM protection.
https://signup.live.com/signup.aspx?id=60969
From | Date | Subject | |
---|---|---|---|
Next Message | Rob Richardson | 2010-04-21 17:55:32 | SELECT * in a view |
Previous Message | Watson, Nathaniel | 2010-04-21 17:05:35 | installation on vista |