[GENERAL] fmgr_oldstyle in extensions

2014-09-23 Thread Paul Ramsey
  Hi all, I’m trying to implement an spgist index in the PostGIS extension, which seems like it should work, but is thus far not working for what appear (to me) to be issues in the way spgist expects to pass pointers to user-defined functions. Right before anything happens, spgist calls a

Re: [GENERAL] fmgr_oldstyle in extensions

2014-09-23 Thread Andres Freund
Hi Paul, On 2014-09-23 09:55:32 -0700, Paul Ramsey wrote: I’m trying to implement an spgist index in the PostGIS extension, which seems like it should work, but is thus far not working for what appear (to me) to be issues in the way spgist expects to pass pointers to user-defined

Re: [GENERAL] fmgr_oldstyle in extensions

2014-09-23 Thread Paul Ramsey
Oh vey, I knew after spending a half-day walking through the debugger it would turn out to be a trivial mistake on my part. This is always how it is when the Magic Fails to Work :) Thanks so much for the help! (and now I know a lot more about the function manager (well, the old one)). P --