From: | Eric Ridge <eebbrr(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Andres Freund <andres(at)anarazel(dot)de>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Weirdness using Executor Hooks |
Date: | 2015-06-18 21:41:58 |
Message-ID: | CANcm6wY3mUK9h8veEf6G+b6noo+w6J6V+fuXHK7Zg4ifrjirCg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Thu, Jun 18, 2015 at 5:30 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
> If that's broken, then so are most of our contrib modules.
> Certainly none of them have an extra check as suggested by Andres.
I'm putting it in anyways, along with a guard in the actual hook
function to ERROR if prev_hook == my_hook. At least that'll avoid the
endless loops until I can figure this out.
>
>> As a data point, that might be interesting to know, but I'd still be
>> scratching my head about how it happened. Postgres doesn't load an
>> extension library more than once per backend session, does it?
>
> It's not supposed to, and AFAICS internal_load_library() will treat
> either an exact pathname match or an inode-number match as being
> "already loaded". I wonder if you might be doing something that
> confuses those checks. It does not look like we try terribly hard
> to canonicalize library pathnames --- might you have some references
> under different relative paths, for instance? The inode number
> check would perhaps fail if you'd installed a new library version,
> but it's unclear to me why the pathname check would fail.
According to the docs, anything listed in 'local_preload_libraries'
has to be in $libdir/plugins (whereas extensions just go to $libdir),
so rather than duplicate the .so, the "copy" in $libdir/plugins is
just a symlink to ../my_extension.so.
Could that be confusing things?
eric
From | Date | Subject | |
---|---|---|---|
Next Message | Nicolas Barbier | 2015-06-18 21:43:11 | Re: Is it possible to have a "fast-write" Index? |
Previous Message | Tom Lane | 2015-06-18 21:39:48 | Re: Weirdness using Executor Hooks |