pgsql: Fix hash_array - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Fix hash_array
Date
Msg-id E1mQS5P-0002Uq-KV@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix hash_array

Commit 054adca641ac1279dc8d9b74fda41948ac35e9a9 neglected to
initialize the type_id field of the synthesized type cache entry, so
it would make a new one on every call.

Also, better use the per-function memory context for this; otherwise
it leaks memory.

Discussion: https://www.postgresql.org/message-id/flat/17158-8a2ba823982537a4%40postgresql.org

Branch
------
REL_14_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/9b2fd490577bc957429f337cfd72869eb8ef08c9

Modified Files
--------------
src/backend/utils/adt/arrayfuncs.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Daniel Gustafsson
Date:
Subject: pgsql: doc: Clarify refresh options for DROP PUBLICATION
Next
From: Peter Eisentraut
Date:
Subject: pgsql: Make node output prefix match node structure name