Re: writing backend extensions using Visual

From: Greg Landrum <greg(dot)landrum(at)gmail(dot)com>
To: pgsql-hackers-win32(at)postgresql(dot)org
Subject: Re: writing backend extensions using Visual
Date: 2005-03-26 19:18:04
Message-ID: 60825b0f05032611182d2f6b31@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers-win32

On Sat, 26 Mar 2005 13:55:06 -0500, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
> I'm not either, but given that he can get as far as building a library
> that will load into the backend, it's surprising that it would fall down
> on the small matter of passing function arguments. It seems worth
> trying to understand exactly what's happening there.
>
> Greg, how sure are you about the diagnosis of "PG_ARGISNULL always
> returns true" --- have you stepped through your code with a debugger?

Nope, I haven't gone that far. I just had the code that was causing
the crash (from accessing bad memory) inside:
if(!PG_ARGISNULL(0)) {
}
and I'm sure that the function isn't actually being called with a null
argument (for one thing, it's declared 'strict').

-greg

In response to

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Greg Landrum 2005-03-28 19:45:45 Re: writing backend extensions using Visual Studio
Previous Message Tom Lane 2005-03-26 18:55:06 Re: writing backend extensions using Visual