Re: C Function problems - Mailing list pgsql-novice

From Tom Lane
Subject Re: C Function problems
Date
Msg-id 25498.1264955434@sss.pgh.pa.us
Whole thread Raw
In response to C Function problems  (Kent Scott <kscott@logicalsi.com>)
List pgsql-novice
Kent Scott <kscott@logicalsi.com> writes:
> I have trouble creating C functions especially when using some C native code
> For example, the following code works:

> [ examples differing only in the addition of a local variable ]

> I get the following error when trying to create the function :
> ERROR: could not find function "Create_Future_Records" in file
> "/usr/lib/postgresql/8.4/lib/shared.so"

It's really hard to believe that those two examples work differently.
I think more likely you're up against some procedural error that you
are misinterpreting to suggest that adding an unused local variable
would really make a difference.

One thought that comes to mind is that as of recent releases, the
only way to load a modified .so into the backend is to start a fresh
session.  So if you recompiled and then tried to do a CREATE FUNCTION
in a backend that had already loaded the previous version of the .so,
you could get an error like that.  Any chance it's that?

            regards, tom lane

pgsql-novice by date:

Previous
From: Susan M Farley
Date:
Subject: Error installing pljava
Next
From: "Machiel Richards"
Date:
Subject: Novice to postgres