Re: [GENERAL] Linking in sin() as a C function - Mailing list pgsql-general

From Karel Zak - Zakkr
Subject Re: [GENERAL] Linking in sin() as a C function
Date
Msg-id Pine.LNX.3.96.1000201094511.5443A-100000@ara.zf.jcu.cz
Whole thread Raw
In response to Linking in sin() as a C function  (mathprof@bigfoot.com)
List pgsql-general
On Mon, 31 Jan 2000 mathprof@bigfoot.com wrote:

> I tried the following, one at a time, to create sin() for PostgreSQL:
>
> CREATE FUNCTION sin(float8) RETURNS float8 AS '/usr/lib/libm.so' LANGUAGE 'c';
> CREATE FUNCTION sin(float4) RETURNS float4 AS '/usr/lib/libm.so' LANGUAGE 'c';
> CREATE FUNCTION sin(float4) RETURNS float8 AS '/usr/lib/libm.so' LANGUAGE 'c';
> CREATE FUNCTION sin(float8) RETURNS float4 AS '/usr/lib/libm.so' LANGUAGE 'c';
>
> Each of these gave different and odd results (and a 'segmentation fault'
> at one point), but none of them gave the right answer. What am I doing
> wrong?

 Yes, it is probably wrong. Very offen PG's buildin functions allocate memory
for result and IMHO your trial wrong mixing pointers. See a backend/utils/atd
in PG source as example.

                        Karel







pgsql-general by date:

Previous
From: mathprof@bigfoot.com
Date:
Subject: Linking in sin() as a C function
Next
From: Chris
Date:
Subject: (no subject)