Fix usage of palloc() in MERGE/SPLIT PARTITION(s) code

Alexander Korotkov <akorotkov@postgresql.org>

Commit: c5ae07a90a0f3594e5053a26f3c99b041df427d3
Author: Alexander Korotkov <akorotkov@postgresql.org>
Date: 2025-12-14T14:10:25Z
Fix usage of palloc() in MERGE/SPLIT PARTITION(s) code

f2e4cc427951 and 4b3d173629f4 implement ALTER TABLE ... MERGE/SPLIT
PARTITION(s) commands.  In several places, these commits use palloc(),
where we should use palloc_object() and palloc_array().  This commit
provides appropriate usage of palloc_object() and palloc_array().

Reported-by: Man Zeng <zengman@halodbtech.com>
Discussion: https://postgr.es/m/tencent_3661BB522D5466B33EA33666%40qq.com

Files

PathChange+/−
src/backend/commands/tablecmds.c modified +3 −3
src/backend/partitioning/partbounds.c modified +4 −8

Discussion