mirror of
https://github.com/postgres/postgres.git
synced 2025-11-18 02:02:55 +03:00
Fix bug in cbc127917 to handle nested Append correctly
A non-leaf partition with a subplan that is an Append node was omitted from PlannedStmt.unprunableRelids because it was mistakenly included in PlannerGlobal.prunableRelids due to the way PartitionedRelPruneInfo.leafpart_rti_map[] is constructed. This happened when a non-leaf partition used an unflattened Append or MergeAppend. As a result, ExecGetRangeTableRelation() reported an error when called from CreatePartitionPruneState() to process the partition's own PartitionPruneInfo, since it was treated as prunable when it should not have been. Reported-by: Alexander Lakhin <exclusion@gmail.com> (via sqlsmith) Diagnosed-by: Tender Wang <tndrwang@gmail.com> Reviewed-by: Tender Wang <tndrwang@gmail.com> Discussion: https://postgr.es/m/74839af6-aadc-4f60-ae77-ae65f94bf607@gmail.com
This commit is contained in:
@@ -687,7 +687,14 @@ make_partitionedrel_pruneinfo(PlannerInfo *root, RelOptInfo *parentrel,
|
||||
if (subplanidx >= 0)
|
||||
{
|
||||
present_parts = bms_add_member(present_parts, i);
|
||||
leafpart_rti_map[i] = (int) partrel->relid;
|
||||
|
||||
/*
|
||||
* Non-leaf partitions may appear here when they use an
|
||||
* unflattened Append or MergeAppend. These should not be
|
||||
* included in prunableRelids.
|
||||
*/
|
||||
if (partrel->nparts == -1)
|
||||
leafpart_rti_map[i] = (int) partrel->relid;
|
||||
|
||||
/* Record finding this subplan */
|
||||
subplansfound = bms_add_member(subplansfound, subplanidx);
|
||||
|
||||
Reference in New Issue
Block a user