Re: More issues with expressions always false (no patch) - Mailing list pgsql-hackers

From Andreas Karlsson
Subject Re: More issues with expressions always false (no patch)
Date
Msg-id f53ed33d-4869-8a32-4b35-cae674ddefca@proxel.se
Whole thread Raw
In response to More issues with expressions always false (no patch)  (Ranier Vilela <ranier.vf@gmail.com>)
Responses Re: More issues with expressions always false (no patch)  (Andreas Karlsson <andreas@proxel.se>)
List pgsql-hackers
On 12/20/19 1:01 AM, Ranier Vilela wrote:> First case:
> src \ backend \ executor \ nodeSubplan.c (line 507)
> 
> if (node-> hashtable)
> 
> node-> hastable is assigned with NULL at line 498, so the test will 
> always fail.
> 
> Second case:
> Here the case is similar, but worse.
> 
> src \ backend \ executor \ nodeSubplan.c (line 535)
> if (node-> hashnulls)
>    ResetTupleHashTable (node-> hashtable);

These two look like likely bugs. It looks like the code will always 
create new hash tables despite commit 
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=356687bd825e5ca7230d43c1bffe7a59ad2e77bd 
intending to reset them if they already exist.

Additionally it looks like the code would reset the wrong hash table in 
the second place if the bug was fixed.

I have attached a patch.

> Third case:
> \ src \ backend \ utils \ cache \ relcache.c (line 5190)
> if (relation-> rd_pubactions)
> 
> It will never be executed, because if relation-> rd_pubactions is true, 
> the function returns on line 5154.

I have not looked into this one in detail, but the free at line 5192 
looks like potentially dead code.

Andreas


Attachment

pgsql-hackers by date:

Previous
From: Ranier Vilela
Date:
Subject: Re: [PATCH] Fix expressions always false
Next
From: Thomas Munro
Date:
Subject: Re: [HACKERS] kqueue