Re: [INTERFACES] The persistance of C functions

From: Karel Zak - Zakkr <zakkr(at)zf(dot)jcu(dot)cz>
To: "Ross J(dot) Reedstrom" <reedstrm(at)wallace(dot)ece(dot)rice(dot)edu>
Cc: pgsql-hackers <pgsql-hackers(at)postgreSQL(dot)org>, Bryan White <bryan(at)arcamax(dot)com>
Subject: Re: [INTERFACES] The persistance of C functions
Date: 2000-02-11 10:34:52
Message-ID: Pine.LNX.3.96.1000211112520.23828B-100000@ara.zf.jcu.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-interfaces


On Thu, 10 Feb 2000, Ross J. Reedstrom wrote:

> On Thu, Feb 10, 2000 at 10:42:29AM +0100, Karel Zak - Zakkr wrote:
> >
> > On Wed, 9 Feb 2000, Bryan White wrote:
> >
> > > If I use CREATE FUNCTION for a C function in a .so file and then use the
> > > function and then change and recompile the function, what steps are needed
> > > to see the change?
> > >
> > > As I see it the options are:
> > > A: do nothing, the function is reloaded on every invocation.
> > > B: Reopen the connection to the backend
> > > C: Restart the postmaster
> > >
> > > I suspect B is correct but I would like to hear someone confirm it.
> >
> > 'B' is right - the postgreSQL not has any persisten cache for this, and
> > if you restart connection a backend reload this information again.
> >
> > Or you can drop/(re)create a function, it is total safe solution.
>
> Not _totally_ safe: if you've got anything that refers to that function,
> like a user defined type definition, drop/(re)create will change the
> function's oid in the pg_proc table, causing errors when the old
> function is looked up. Hmm, an ALTER FUNCTION command might be nice...

... and/or check dependencies on the function's oid if the function is DROP,
(via FOREIGN KEYs ?). IMHO it is good item to TODO if really nothing check
it. (...resending to hackers)

Karel

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-02-11 14:59:59 Re: [HACKERS] Solution for LIMIT cost estimation
Previous Message ventura 2000-02-11 08:55:56 Visit www.ventura.vu

Browse pgsql-interfaces by date

  From Date Subject
Next Message Jose Soares 2000-02-11 13:40:36 Re: Thank for your Clue - PostgreSQL ODBC
Previous Message Alex Verstak 2000-02-11 07:12:06 Re: [INTERFACES] JDBC primary keys