pgsql: pg_plan_advice: Avoid assertion failure with partitionwise aggre

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: pg_plan_advice: Avoid assertion failure with partitionwise aggre
Date: 2026-03-30 14:03:59
Message-ID: E1w7DDi-0029t5-2F@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pg_plan_advice: Avoid assertion failure with partitionwise aggregate.

An Append node that is part of a partitionwise aggregate has no
apprelids. If such a node was elided, the previous coding would
attempt to call unique_nonjoin_rtekind() on a NULL pointer, which
leads to an assertion failure. Insert a NULL check to prevent that.

Reported-by: Alexander Lakhin <exclusion(at)gmail(dot)com>
Discussion: http://postgr.es/m/0afba1ce-c946-4131-972d-191d9a1c097c@gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e2ee95233cab32a0d5fe64925aefe816c13dbbc0

Modified Files
--------------
contrib/pg_plan_advice/pgpa_scan.c | 7 +++++++
1 file changed, 7 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2026-03-30 14:17:27 pgsql: Fix outdated comment on MainLWLockArray
Previous Message Melanie Plageman 2026-03-30 13:53:33 pgsql: Remove PlannedStmt->resultRelations in favor of resultRelationRe