pgsql: Move SplitGUCList() to fe_utils

From: Noah Misch <noah(at)leadboat(dot)com>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move SplitGUCList() to fe_utils
Date: 2026-08-10 13:41:27
Message-ID: E1wtQFr-00000000yDF-3KbE@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move SplitGUCList() to fe_utils

This is needed so that all versions of pg_upgrade that migrate logical
replication slots can parse the new output_plugin_libraries GUC.

Backpatch-through: 17
Security: CVE-2026-6471

Branch
------
REL_17_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/4fcccea972bcdce66976da86535e970dea9b999f
Author: Jacob Champion <jchampion(at)postgresql(dot)org>

Modified Files
--------------
src/backend/utils/adt/varlena.c | 2 +-
src/bin/pg_dump/dumputils.c | 109 -----------------------------------
src/bin/pg_dump/dumputils.h | 3 -
src/fe_utils/string_utils.c | 110 ++++++++++++++++++++++++++++++++++++
src/include/fe_utils/string_utils.h | 2 +
5 files changed, 113 insertions(+), 113 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Noah Misch 2026-08-10 13:41:28 pgsql: Harden tsquery code against overflows.
Previous Message Noah Misch 2026-08-10 13:41:26 pgsql: Fix potential buffer overrun in regexp match/split functions.