Re: [HACKERS] Buildfarm failure and dubious coding in predicate.c - Mailing list pgsql-hackers

From Tom Lane
Subject Re: [HACKERS] Buildfarm failure and dubious coding in predicate.c
Date
Msg-id 21591.1500755559@sss.pgh.pa.us
Whole thread Raw
In response to [HACKERS] Buildfarm failure and dubious coding in predicate.c  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [HACKERS] Buildfarm failure and dubious coding in predicate.c
List pgsql-hackers
I wrote:
> And, while I'm looking at this ... isn't this "scratch target" logic
> just an ineffective attempt at waving a dead chicken?  It's assuming
> that freeing an entry in a shared hash table guarantees that it can
> insert another entry.  But that hash table is partitioned, meaning it has
> a separate freelist per partition.  So the extra entry only provides a
> guarantee that you can insert something into the same partition it's in,
> making it useless for this purpose AFAICS.

After further study I found the bit in get_hash_entry() about "borrowing"
entries from other freelists.  That makes all of this safe after all,
which is a good thing because I'd also found other assumptions that would
have been broken by the behavior I posited above.  But I think that that
code is desperately undercommented -- the reader could be forgiven for
thinking that it was an optional optimization, and not something that
is critical for correctness of several different callers.  I'm going to
go improve the comments.

Meanwhile, it's still pretty unclear what happened yesterday on
culicidae.
        regards, tom lane



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] Syncing sql extension versions with shared library versions
Next
From: Mark Rofail
Date:
Subject: Re: [HACKERS] GSoC 2017: Foreign Key Arrays