Re: Extending PostgreSQL on Windows - Mailing list pgsql-hackers-win32

From Magnus Hagander
Subject Re: Extending PostgreSQL on Windows
Date
Msg-id 6BCB9D8A16AC4241919521715F4D8BCE6C7746@algol.sollentuna.se
Whole thread Raw
In response to Extending PostgreSQL on Windows  (Kostadin Zhelev <kostadin_m@yahoo.com>)
Responses Re: Extending PostgreSQL on Windows
List pgsql-hackers-win32
While it may work, we don't fully support using MSVC for developing
server-side extensions. Not sure if it's related to your problem, but
it's quite possible. You will need to get the MingW toolset to developer
server-side. (You can still use the VS IDE if you want to, of course,
but you need to use the gcc compiler from MingW).

//Magnus

> -----Original Message-----
> From: pgsql-hackers-win32-owner@postgresql.org
> [mailto:pgsql-hackers-win32-owner@postgresql.org] On Behalf
> Of Kostadin Zhelev
> Sent: Thursday, June 30, 2005 4:48 PM
> To: pgsql-hackers-win32@postgresql.org
> Subject: [pgsql-hackers-win32] Extending PostgreSQL on Windows
>
> Hi I intalled postgreSQL 8.0.3 from win installer.
> I am trying to create my own c functions to exetend the
> functionallity of postgres. I had some trouble so I tryed
> add_one function as it is shown in the documentation. When I
> use the old convention I am able to run the function fine
> when I use the new convention with the macros after i call
> the function I get the following error:
> server closed the connection unexpectedly  This probably
> means the server terminated abnormally  before or while
> processing the request.
>
> After playing with it a little I came if a conclusion that
> the arguments or the fcinfo struct is not properly
> initialized since the code breaks only when I try to access
> the arguments either through the macros or directly. My IDE
> is VS.NET 2003 The code that brakes is the following:
>
>
> PG_FUNCTION_INFO_V1(add_one);
>
> Datum
>
> add_one(PG_FUNCTION_ARGS)
>
> {
>
> int32 arg = PG_GETARG_INT32(0);
>
> PG_RETURN_INT32(arg);
>
> }
>
> But the following works:
>
> Datum
>
> add_one(PG_FUNCTION_ARGS)
>
> {
>
> FunctionCallInfo fcc;
>
> fcc = (struct FunctionCallInfoData *)malloc(sizeof(struct
> FunctionCallInfoData));
>
> fcc->nargs = 4;
>
> return (int32)fcc->nargs;
>
> }
>
> Any help will be appreciated.
>
>
>
> email:kostadin_m@yahoo.com
>
> ________________________________
>
> Yahoo! Sports
> Rekindle the Rivalries. Sign up for Fantasy Football
> <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=33539/*http:/
> /football.fantasysports.yahoo.com?ovchn=YAH&ovcpn=Integration&
> ovcrn=Mail+footer&ovrfd=YAH&ovtac=AD>
>

pgsql-hackers-win32 by date:

Previous
From: Kostadin Zhelev
Date:
Subject: Extending PostgreSQL on Windows
Next
From: Tom Lane
Date:
Subject: Re: Extending PostgreSQL on Windows