RE: [GENERAL] which guru know this ??

From: Michael J Davis <michael(dot)j(dot)davis(at)tvguide(dot)com>
To: "'Carlos Peralta Ramirez'" <cperalta(at)hera(dot)inf(dot)ucv(dot)cl>, pgsql-novice <pgsql-novice(at)hub(dot)org>, pgsql-hackers <pgsql-hackers(at)postgreSQL(dot)org>, pgsql-sql <pgsql-sql(at)postgreSQL(dot)org>, pgsql-general <pgsql-general(at)postgreSQL(dot)org>
Subject: RE: [GENERAL] which guru know this ??
Date: 1999-05-05 19:52:25
Message-ID: 93C04F1F5173D211A27900105AA8FCFC145497@lambic.prevuenet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers pgsql-sql

Try:

#include <pgsql/postgres.h>

int plus2(int a,int b)
{
return(a+b);
}

cc -c plus2.c /* I get the object file *.o */
gcc -shared -o plus2.so plus2.o /* you need a library file */

from psql:

create function plus2(int4,int4) returns int4 as
'/var/lib/pgsql/plus2.so' language 'c'; -- assuming /var/lib/pgsql
is the location of plus2.so

-----Original Message-----
From: Carlos Peralta Ramirez [SMTP:cperalta(at)hera(dot)inf(dot)ucv(dot)cl]
Sent: Wednesday, May 05, 1999 2:44 AM
To: pgsql-novice; pgsql-hackers; pgsql-sql; pgsql-general
Subject: [GENERAL] which guru know this ??

Primary, Sorry for my english !!!

Hi,

I ´m developing a several test database, for study. But I can´t
create
any function, every time ERROR appears.
I write a C code in a plus2.c file

#include <pgsql/postgres.h>

int4 plus2(int4 a,int4 b)
{
return(a+b);
}

main() /* For getting *.out*/
{
}

, then I compile it (I made this of two ways)

cc -c plus2.c /* I get the object file *.o */

or

cc plus2.c plus2.out /*I get the *.out file */

When I create the function on postgresql, occurs this

db=> create function plus2(int4,int4) returns int4 as
'/var/lib/pgsql/plus2.o' language 'c';
CREATE

or

db=> create function plus2(int4,int4) returns int4 as
'/var/lib/pgsql/plus2.out' language 'c';
CREATE

Wherever, when I call the function plus2 from Sql sentence ...

db=> select plus2(6,6);
ERROR: Load of file /var/lib/pgsql/plus2.o failed:
(ô@(ô@/pgsql/plus2.o: ELF file's phentsize not the expected size

or, with plus2.out

db=> select plus2(6,6);
PQexec() -- Request was sent to backend, but backend closed the
channel
before responding.
This probably means the backend terminated abnormally before or
while
processing the request.

If anybody can help me, thank !!!

PD: I don´t disturb you, if I don´t need it really.

Browse pgsql-general by date

  From Date Subject
Next Message postgres admin 1999-05-05 20:01:59 dying backend processes
Previous Message Dustin Sallings 1999-05-05 17:18:25 Re: [GENERAL] Row Count?

Browse pgsql-hackers by date

  From Date Subject
Next Message postgres admin 1999-05-05 20:11:01 dying backend processes
Previous Message Peter T Mount 1999-05-05 18:28:36 Re: SIGBUS in AllocSetAlloc & jdbc (fwd)

Browse pgsql-sql by date

  From Date Subject
Next Message Greg Frith 1999-05-05 23:16:43 Re: [SQL] User and Groups
Previous Message Michael J Davis 1999-05-05 16:39:42 RE: [SQL] User and Groups