Re: BUG #18868: /src/backend/optimizer/path/joinrels.c list_head can be NULL

From: "Euler Taveira" <euler(at)eulerto(dot)com>
To: dan-eli(at)mail(dot)ru, pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #18868: /src/backend/optimizer/path/joinrels.c list_head can be NULL
Date: 2025-03-26 14:27:43
Message-ID: ef3e2fb6-dfb7-49e6-ac62-53625d5ac7f2@app.fastmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Wed, Mar 26, 2025, at 7:16 AM, PG Bug reporting form wrote:
> Pointers, returned from function 'list_head' at joinrels.c:1527 and 1528,
> may be NULL and is dereferenced at joinrels.c:1550 and 1551.

joinrels.c:

compute_partition_bounds(root, rel1, rel2, joinrel, parent_sjinfo,
&parts1, &parts2);

if (joinrel->partbounds_merged)
{
lcr1 = list_head(parts1);
lcr2 = list_head(parts2);
}

Did you read compute_partition_bounds()?

if (joinrel->partbounds_merged)
{
get_matching_part_pairs(root, joinrel, rel1, rel2,
parts1, parts2);
Assert(list_length(*parts1) == joinrel->nparts);
Assert(list_length(*parts2) == joinrel->nparts);
}

parts1 and parts2 uses the same condition. I expect that if there is any bug
related to pointer deference, the assert(s) should report. Do you have a test
case that exposes this issue?

--
Euler Taveira
EDB https://www.enterprisedb.com/

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2025-03-26 14:35:36 Re: BUG #18869: /src/backend/optimizer/plan/createplan.c clause can be null if user isn't root
Previous Message PG Bug reporting form 2025-03-26 10:20:05 BUG #18869: /src/backend/optimizer/plan/createplan.c clause can be null if user isn't root