From: David Rowley Date: Thu, 2 Jan 2025 09:04:09 +0000 (+1300) Subject: Fix outdated CHUNKHDRSZ value in nodeAgg.c X-Git-Tag: REL_18_BETA1~1182 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=d93bb8163c9cdbaa922ce6b1f3d044fc589d0fa6;p=postgresql.git Fix outdated CHUNKHDRSZ value in nodeAgg.c CHUNKHDRSZ was defined as 16 bytes, which was true when that code went in, but since c6e0fe1f2, 8 is a more accurate value. Here we adjust it to use sizeof(MemoryChunk), which is normally 8, or 16 for cassert builds. c6e0fe1f2 first appeared in v16, so this is technically wrong in v16 up to master, but let's apply this only to master as adjusting this does influence the estimated number of batches in the aggregate costing code and we don't want to cause plan instability in released versions. Reviewed-by: Tom Lane Discussion: https://postgr.es/m/CAApHDvpMpRQvsTqZo3FinXkgytwxwF8sCyZm83xDj-1s_hLe+w@mail.gmail.com --- diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c index b48a12c1a34..66cd4616963 100644 --- a/src/backend/executor/nodeAgg.c +++ b/src/backend/executor/nodeAgg.c @@ -272,6 +272,7 @@ #include "utils/logtape.h" #include "utils/lsyscache.h" #include "utils/memutils.h" +#include "utils/memutils_memorychunk.h" #include "utils/syscache.h" #include "utils/tuplesort.h" @@ -314,10 +315,9 @@ #define HASHAGG_HLL_BIT_WIDTH 5 /* - * Estimate chunk overhead as a constant 16 bytes. XXX: should this be - * improved? + * Assume the palloc overhead always uses sizeof(MemoryChunk) bytes. */ -#define CHUNKHDRSZ 16 +#define CHUNKHDRSZ sizeof(MemoryChunk) /* * Represents partitioned spill data for a single hashtable. Contains the